2010年12月9日 星期四

讓 VIM 記住上次游標的位置

如果安裝的vim每次開檔案的時候,游標都不在上次編輯的位置,那請編輯檔案 /etc/vim/vimrc 。

將下面這幾行前的註解拿掉
" Uncomment the following to have Vim jump to the last position when
" reopening a file
if has("autocmd")
au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif
endif

1 則留言: