diff --git a/autoload/SpaceVim/plugins/flygrep.vim b/autoload/SpaceVim/plugins/flygrep.vim index 5008ca055..b46297154 100644 --- a/autoload/SpaceVim/plugins/flygrep.vim +++ b/autoload/SpaceVim/plugins/flygrep.vim @@ -477,7 +477,7 @@ function! s:open_item() abort endif let s:preview_able = 0 noautocmd q - exe 'e ' . filename + exe 'silent e ' . filename call s:update_history() call cursor(linenr, colum) noautocmd normal! : @@ -501,7 +501,7 @@ function! s:open_item_vertically() abort endif let s:preview_able = 0 noautocmd q - exe 'vsplit ' . filename + exe 'silent vsplit ' . filename call s:update_history() call cursor(linenr, colum) noautocmd normal! : @@ -525,7 +525,7 @@ function! s:open_item_horizontally() abort endif let s:preview_able = 0 noautocmd q - exe 'split ' . filename + exe 'silent split ' . filename call s:update_history() call cursor(linenr, colum) noautocmd normal! :