Skip to content

Commit 245eaf8

Browse files
committed
Allow specifying command-level fzf options
Close #1583
1 parent f06bd1e commit 245eaf8

File tree

3 files changed

+33
-4
lines changed

3 files changed

+33
-4
lines changed

README.md

+13
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,19 @@ let g:fzf_vim.tags_command = 'ctags -R'
183183
let g:fzf_vim.commands_expect = 'alt-enter,ctrl-x'
184184
```
185185

186+
#### Command-level fzf options
187+
188+
You can set fzf options for each command by setting
189+
`g:fzf_vim.{command}_options`.
190+
191+
```vim
192+
" In string
193+
let g:fzf_vim.buffers_options = '--style full --border-label " Open Buffers "'
194+
195+
" In list (No need to quote or escape values)
196+
let g:fzf_vim.buffers_options = ['--style', 'full', '--border-label', ' Open Buffers ']
197+
```
198+
186199
#### List type to handle multiple selections
187200

188201
The following commands will fill the quickfix list when multiple entries are

autoload/fzf/vim.vim

+4
Original file line numberDiff line numberDiff line change
@@ -340,6 +340,10 @@ function! s:fzf(name, opts, extra)
340340
let eopts = has_key(extra, 'options') ? remove(extra, 'options') : ''
341341
let merged = extend(copy(a:opts), extra)
342342
call s:merge_opts(merged, eopts)
343+
344+
" Command-level fzf options
345+
call s:merge_opts(merged, s:conf(a:name.'_options', []))
346+
343347
return fzf#run(s:wrap(a:name, merged, bang))
344348
endfunction
345349

doc/fzf-vim.txt

+16-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
fzf-vim.txt fzf-vim Last change: October 29 2024
1+
fzf-vim.txt fzf-vim Last change: March 3 2025
22
FZF-VIM - TABLE OF CONTENTS *fzf-vim* *fzf-vim-toc*
33
==============================================================================
44

@@ -14,6 +14,7 @@ FZF-VIM - TABLE OF CONTENTS *fzf-vim* *fzf-vim-to
1414
Configuration options for fzf.vim |fzf-vim-configuration-options-for-fzf-vim|
1515
Preview window |fzf-vim-preview-window|
1616
Command-level options |fzf-vim-command-level-options|
17+
Command-level fzf options |fzf-vim-command-level-fzf-options|
1718
List type to handle multiple selections |fzf-vim-list-type-to-handle-multiple-selections|
1819
Advanced customization |fzf-vim-advanced-customization|
1920
Vim functions |fzf-vim-vim-functions|
@@ -228,7 +229,7 @@ Command-level options~
228229
*g:fzf_vim.commands_expect* *g:fzf_vim.tags_command* *g:fzf_vim.commits_log_options*
229230
*g:fzf_vim.buffers_jump*
230231
>
231-
" [Buffers] Jump to the existing window if possible
232+
" [Buffers] Jump to the existing window if possible (default: 0)
232233
let g:fzf_vim.buffers_jump = 1
233234
234235
" [Ag|Rg|RG] Display path on a separate line for narrow screens (default: 0)
@@ -253,6 +254,19 @@ Command-level options~
253254
let g:fzf_vim.commands_expect = 'alt-enter,ctrl-x'
254255
<
255256

257+
Command-level fzf options~
258+
*fzf-vim-command-level-fzf-options*
259+
260+
You can set fzf options for each command by setting
261+
`g:fzf_vim.{command}_options`.
262+
>
263+
" In string
264+
let g:fzf_vim.buffers_options = '--style full --border-label " Open Buffers "'
265+
266+
" In list (No need to quote or escape values)
267+
let g:fzf_vim.buffers_options = ['--style', 'full', '--border-label', ' Open Buffers ']
268+
<
269+
256270
List type to handle multiple selections~
257271
*fzf-vim-list-type-to-handle-multiple-selections*
258272

@@ -383,8 +397,6 @@ Example: git grep wrapper~
383397
The following example implements `GGrep` command that works similarly to
384398
predefined `Ag` or `Rg` using `fzf#vim#grep`.
385399

386-
*:LINE*
387-
388400
- We set the base directory to git root by setting `dir` attribute in spec
389401
dictionary.
390402
- {The preview script}{12} supports `grep` format (`FILE_PATH:LINE_NO:...`), so

0 commit comments

Comments
 (0)