Checklist
Output of :echo system(fzf#exec() .. ' --version')
0.66.0 (8cdfb23d)
OS
Problem / Steps to reproduce
I have this in my .vimrc (found here for the buffers command: #1583):
let g:fzf_vim = {}
let g:fzf_vim.buffers_options = ['--keep-right']
let g:fzf_vim.history_options = ['--keep-right']
This works for the :Buffers command but not for the :History command. Is history_options wrong?
The documentation looks like it should work for any command:
|
You can set fzf options for each command by setting |
|
`g:fzf_vim.{command}_options`. |
Checklist
Output of
:echo system(fzf#exec() .. ' --version')0.66.0 (8cdfb23d)
OS
Problem / Steps to reproduce
I have this in my
.vimrc(found here for the buffers command: #1583):This works for the
:Bufferscommand but not for the:Historycommand. Ishistory_optionswrong?The documentation looks like it should work for any command:
fzf.vim/doc/fzf-vim.txt
Lines 261 to 262 in 879db51