Merge pull request #138 from daniilguit/master

Enable jumping to the last position in file on open
pull/131/merge
Amir Salihefendic 7 years ago
commit 6b251c0ea1
  1. 5
      vimrcs/basic.vim

@ -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…
Cancel
Save