2019-10-18 11:46:00 +00:00
|
|
|
command -nargs=1 SplitOpen :call splitopen#SplitOpenFile("<args>")
|
2019-10-18 14:17:49 +00:00
|
|
|
|
2019-10-18 18:57:12 +00:00
|
|
|
if !exists('g:splitopen_set_fzf_keys')
|
|
|
|
let g:splitopen_set_fzf_keys = 0
|
|
|
|
endif
|
2019-10-18 14:17:49 +00:00
|
|
|
|
2019-10-18 18:57:12 +00:00
|
|
|
if g:splitopen_set_fzf_keys
|
|
|
|
let g:fzf_action = {
|
|
|
|
\ 'ctrl-s': 'SplitOpen',
|
|
|
|
\ 'ctrl-t': 'tab split',
|
|
|
|
\ 'ctrl-x': 'split',
|
|
|
|
\ 'ctrl-v': 'vsplit' }
|
|
|
|
endif
|