From 359a80e3a34aacbd5257713b6a88aa085337166f Mon Sep 17 00:00:00 2001 From: Viacheslav Lotsmanov Date: Thu, 4 Jul 2019 16:53:22 +0300 Subject: [PATCH] [History] Fix feedkeys to ignore command-line mappings (#836) --- autoload/fzf/vim.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/fzf/vim.vim b/autoload/fzf/vim.vim index ec1c00d..35a1143 100644 --- a/autoload/fzf/vim.vim +++ b/autoload/fzf/vim.vim @@ -485,7 +485,7 @@ function! s:history_sink(type, lines) if key == 'ctrl-e' call histadd(a:type, item) redraw - call feedkeys(a:type."\") + call feedkeys(a:type."\", 'n') else if a:type == ':' call histadd(a:type, item)