macOS下的vim默认打开文件总时显示文件开头,而我们希望能够在vim能够记住上次编辑的位置。
编辑vim配置文件,~/.vimrc
,添加如下配置:
" Uncomment the following to have Vim jump to the last position when
" reopening a file
au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif