[vim] Bind Ctrl-J in Vim terminal to fix enter key

Temporary workaround for non-Windows environment

Reference:
https://github.com/vim/vim/issues/1998
https://github.com/junegunn/fzf/pull/1019#issuecomment-327008348
pull/1043/head
Jan Edmund Lazo 7 years ago committed by Junegunn Choi
parent fd6bc7308f
commit 26d7896877

@ -400,6 +400,9 @@ try
let optstr .= ' --height='.height
elseif use_term
let optstr .= ' --no-height'
if !has('nvim') && !s:is_win
let optstr .= ' --bind ctrl-j:accept'
endif
endif
let command = prefix.(use_tmux ? s:fzf_tmux(dict) : fzf_exec).' '.optstr.' > '.temps.result

Loading…
Cancel
Save