Package: vim-common<br>Version: 1:6.4-007+1<br><br>I want to use vim's "last-position-jump" function,so I un-comment this section in the default vimrc (/etc/vim/vimrc):<br>" Uncomment the following to have Vim jump to the last position when
<br>" reopening a file<br>" if has("autocmd")<br>" au BufReadPost * if line("'\"") > 0 && line("'\"") <= line("$")<br>" \| exe normal g'\"" | endif
<br>" endif<br><br>to :<br>" Uncomment the following to have Vim jump to the last position when<br>" reopening a file<br>if has("autocmd")<br> au BufReadPost * if line("'\"") > 0 && line("'\"") <= line("$")
<br> \| exe normal g'\"" | endif<br>endif<br><br>but when I use vim I get these errors :<br>#vim /etc/vim/vimrc<br>Error detected while processing BufRead Auto commands for "*":<br>E121: Undefined variable: normal
<br>E15: Invalid expression: normal g'\"" | endif<br>Hit ENTER or type command to continue<br><br>This line:<br>
\| exe normal g'\"" | endif<br>should be :<br>
\| exe "normal g'\"" | endif<br> <br>I am using Debian GNU/Linux Sid,kernel <a href="http://2.6.16.5">2.6.16.5</a> and libc6 2.3.6-7<br>