आप ctrlo'कूद' के माध्यम से कूद कर सकते हैं ।
आप अपने .vimrc में अपने आप को कुछ जोड़ते हैं, उस कर्सर की स्थिति में स्वचालित रूप से कूदने के लिए, http://vim.wikia.com/wiki/Restore_cursor_to_file_position_in_prepret_editing_ession पर अधिक पढ़ें :
" VimTip 80: Restore cursor to file position in previous editing session
" for unix/linux/solaris
set viminfo='10,\"100,:20,%,n~/.viminfo
" only for windows [give some path to store the line number info]
"set viminfo='10,\"100,:20,%,nc:\\Winnt\\_viminfo
au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g`\"" | endif