Skip to content

Commit

Permalink
[History] Fix feedkeys to ignore command-line mappings (#836)
Browse files Browse the repository at this point in the history
  • Loading branch information
unclechu authored and junegunn committed Jul 4, 2019
1 parent 91ed5f4 commit 359a80e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autoload/fzf/vim.vim
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ function! s:history_sink(type, lines)
if key == 'ctrl-e'
call histadd(a:type, item)
redraw
call feedkeys(a:type."\<up>")
call feedkeys(a:type."\<up>", 'n')
else
if a:type == ':'
call histadd(a:type, item)
Expand Down

0 comments on commit 359a80e

Please sign in to comment.