tabedit -> tab split to avoid extraneous unnamed buffer

This commit is contained in:
Junegunn Choi 2015-08-15 02:23:38 +09:00
parent f13853cc8d
commit 76ef9e9d81
2 changed files with 2 additions and 2 deletions

View file

@ -51,7 +51,7 @@ Customization
```vim
" This is the default extra key bindings
let g:fzf_action = {
\ 'ctrl-t': 'tabedit',
\ 'ctrl-t': 'tab split',
\ 'ctrl-x': 'split',
\ 'ctrl-v': 'vsplit' }
```

View file

@ -54,7 +54,7 @@ function! s:fzf(opts, bang)
endfunction
let s:default_action = {
\ 'ctrl-t': 'tabedit',
\ 'ctrl-t': 'tab split',
\ 'ctrl-x': 'split',
\ 'ctrl-v': 'vsplit' }