mirror of
https://github.com/amix/vimrc
synced 2025-02-28 14:12:51 +08:00
Merge pull request #138 from daniilguit/master
Enable jumping to the last position in file on open
This commit is contained in:
commit
6b251c0ea1
@ -429,3 +429,8 @@ function! <SID>BufcloseCloseIt()
|
||||
execute("bdelete! ".l:currentBufNum)
|
||||
endif
|
||||
endfunction
|
||||
|
||||
" Make VIM remember position in file after reopen
|
||||
if has("autocmd")
|
||||
au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif
|
||||
endif
|
||||
|
Loading…
Reference in New Issue
Block a user