Skip to content

Instantly share code, notes, and snippets.

@philographer
Created April 8, 2017 03:30
Show Gist options
  • Save philographer/47c26813fc4921332633a7f09c4a65d1 to your computer and use it in GitHub Desktop.
Save philographer/47c26813fc4921332633a7f09c4a65d1 to your computer and use it in GitHub Desktop.
Vim Last edited line save

/etc/vim/vimrc

  • 파일 마지막에 아래 내용 삽입
 autocmd BufReadPost *
    \ if line("'\"") > 1 && line("'\"") <= line("$") |
    \ exe "normal! g`\"" |
    \ endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment