Last active
March 8, 2018 07:59
-
-
Save mojtabamarashee/d471fc74a00323e966939a811823dc8d to your computer and use it in GitHub Desktop.
Vim: jump to last saved file, even if the file is closed
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
au BufWrite * call BufWriteDo() | |
function! BufWriteDo() | |
let g:LAST_INSERT_FILE = expand('%:p') | |
let g:CURSOR_POS = getpos('.') | |
endfunction | |
nmap gii :execute "O ".g:LAST_INSERT_FILE<cr>:call cursor(CURSOR_POS[1], CURSOR_POS[2])<cr> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment