Skip to content

Commit 359a80e

Browse files
unclechujunegunn
authored andcommitted
[History] Fix feedkeys to ignore command-line mappings (#836)
1 parent 91ed5f4 commit 359a80e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

autoload/fzf/vim.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ function! s:history_sink(type, lines)
485485
if key == 'ctrl-e'
486486
call histadd(a:type, item)
487487
redraw
488-
call feedkeys(a:type."\<up>")
488+
call feedkeys(a:type."\<up>", 'n')
489489
else
490490
if a:type == ':'
491491
call histadd(a:type, item)

0 commit comments

Comments
 (0)