commit
3c7c606541
|
@ -1 +1,3 @@
|
|||
# vim-split-open
|
||||
|
||||
This is my first vim plugin. It provides a command to open a combination of c++ source and header file in a new tab split side-by-side.
|
||||
|
|
|
@ -0,0 +1,13 @@
|
|||
function! SplitOpenFile(filename)
|
||||
execute("tabedit " . a:filename)
|
||||
let l:file_extension = tolower(fnamemodify(a:filename, ":e"))
|
||||
if l:file_extension == "cpp"
|
||||
execute("FSSplitLeft")
|
||||
execute("wincmd l")
|
||||
elseif l:file_extension == "h"
|
||||
execute("FSSplitRight")
|
||||
execute("wincmd h")
|
||||
endif
|
||||
endfunction
|
||||
|
||||
command! -nargs=1 SplitOpen :call SplitOpenFile("<args>")
|
Loading…
Reference in New Issue