From 11d44b1805367ca484f8f89185a04b12634f9e16 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Sun, 24 May 2026 10:27:28 +0900 Subject: [PATCH] Make the appearance of History: and History/ consistent --- 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 b874a34..644086d 100755 --- a/autoload/fzf/vim.vim +++ b/autoload/fzf/vim.vim @@ -699,7 +699,7 @@ function! fzf#vim#search_history(...) return s:fzf('history-search', { \ 'source': s:history_source('/'), \ 'sink*': s:function('s:search_history_sink'), - \ 'options': '+m --ansi --prompt="Hist/> " --header-lines=1 --expect=ctrl-e --tiebreak=index'}, a:000) + \ 'options': '+m --ansi --prompt="Hist/> " --inline-info --header-lines=1 --header-border=horizontal --no-separator --expect=ctrl-e --tiebreak=index'}, a:000) endfunction function! fzf#vim#history(...)