我的.vimrc:
map = :w !pdflatex %
快速编写和编译tex而不离开vim。然而,当它编译并且我回到vim时,我就是文档的顶部。有没有办法让这个映射让我回到我离开的那一行?谢谢!
答案 0 :(得分:0)
您可以在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