Skip to content

Instantly share code, notes, and snippets.

@cj3kim
Created October 12, 2015 06:04
Show Gist options
  • Save cj3kim/9730878d0c98d1880b17 to your computer and use it in GitHub Desktop.
Save cj3kim/9730878d0c98d1880b17 to your computer and use it in GitHub Desktop.
let vim_notes = "~/texts/vim-notes.txt"
nnoremap <F3> :call SplitOpenFile(vim_notes) <CR>
function! SplitOpenFile(file_path)
:vs
:edit a:file_path
endfunction
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment