Skip to content

Instantly share code, notes, and snippets.

@lbzhang
Forked from veggiefrog/.vimrc
Created June 8, 2018 08:31
Show Gist options
  • Save lbzhang/d0af2b94f7ff91796a0aeeba074f9ccd to your computer and use it in GitHub Desktop.
Save lbzhang/d0af2b94f7ff91796a0aeeba074f9ccd to your computer and use it in GitHub Desktop.
VIM: Remember last position in file
" Remember position of last edit and return on reopen
if has("autocmd")
au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif
endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment