From ef3e5e0a37910b65204539ed6db8b590990b432a Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Fri, 15 Apr 2016 22:41:05 +0900 Subject: [PATCH] [History[:/]] Fix regression Close #124 --- 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 94fa7e1..cc4e027 100644 --- a/autoload/fzf/vim.vim +++ b/autoload/fzf/vim.vim @@ -316,7 +316,7 @@ function! s:history_sink(type, lines) endif let key = a:lines[0] - let item = matchstr(a:lines[1], ': \zs.*') + let item = matchstr(a:lines[1], ' *[0-9]\+ *\zs.*') if key == 'ctrl-e' call histadd(a:type, item) call feedkeys(a:type."\")