1
- fzf-vim.txt fzf-vim Last change: October 29 2024
1
+ fzf-vim.txt fzf-vim Last change: March 3 2025
2
2
FZF-VIM - TABLE OF CONTENTS *fzf-vim* *fzf-vim-toc*
3
3
==============================================================================
4
4
@@ -14,6 +14,7 @@ FZF-VIM - TABLE OF CONTENTS *fzf-vim* *fzf-vim-to
14
14
Configuration options for fzf.vim | fzf-vim-configuration-options-for-fzf-vim |
15
15
Preview window | fzf-vim-preview-window |
16
16
Command-level options | fzf-vim-command-level-options |
17
+ Command-level fzf options | fzf-vim-command-level-fzf-options |
17
18
List type to handle multiple selections | fzf-vim-list-type-to-handle-multiple-selections |
18
19
Advanced customization | fzf-vim-advanced-customization |
19
20
Vim functions | fzf-vim-vim-functions |
@@ -228,7 +229,7 @@ Command-level options~
228
229
*g:fzf_vim.commands_expect* *g:fzf_vim.tags_command* *g:fzf_vim.commits_log_options*
229
230
*g:fzf_vim.buffers_jump*
230
231
>
231
- " [Buffers] Jump to the existing window if possible
232
+ " [Buffers] Jump to the existing window if possible (default: 0)
232
233
let g:fzf_vim.buffers_jump = 1
233
234
234
235
" [Ag|Rg|RG] Display path on a separate line for narrow screens (default: 0)
@@ -253,6 +254,19 @@ Command-level options~
253
254
let g:fzf_vim.commands_expect = 'alt-enter,ctrl-x'
254
255
<
255
256
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
+
256
270
List type to handle multiple selections~
257
271
*fzf-vim-list-type-to-handle-multiple-selections*
258
272
@@ -383,8 +397,6 @@ Example: git grep wrapper~
383
397
The following example implements `GGrep` command that works similarly to
384
398
predefined `Ag` or `Rg` using `fzf#vim #grep ` .
385
399
386
- *:LINE*
387
-
388
400
- We set the base directory to git root by setting `dir ` attribute in spec
389
401
dictionary.
390
402
- {The preview script}{12} supports `grep ` format (`FILE_PATH:LINE_NO:... ` ), so
0 commit comments