You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
update minimum fzf version in light #302 uses --scheme option
In #302, I forgot that --scheme is a relatively new option for fzf.
I should have also made a fzf.fish major release. My bad!
Sorry to all Ubuntu users stuck on 0.29.
Also shortened the readme a bit.
`fzf.fish` includes an ergonomic wrapper for configuring its key bindings. Read [its documentation](/functions/_fzf_configure_bindings_help.fish) with this command:
105
+
`fzf.fish` includes an ergonomic wrapper for configuring its key bindings. Read [its documentation](/functions/_fzf_configure_bindings_help.fish):
106
106
107
107
```fish
108
108
fzf_configure_bindings --help
@@ -129,12 +129,9 @@ The following variables can store custom options that will be passed to fzf by t
129
129
| Search Processes |`fzf_processes_opts`|
130
130
| Search Variables |`fzf_variables_opts`|
131
131
132
-
They are appended last to fzf's options list. Because fzf uses the last instance of an option if it is specified multiple times, custom options will always take precedence. Custom fzf options unlock a variety of customizations and augmentations such as:
132
+
They are appended last to fzf's options list. Because fzf uses the last instance of an option if it is specified multiple times, custom options will always take precedence. Custom fzf options unlock a variety of augmentations:
133
133
134
-
- add [key bindings](https://www.mankier.com/1/fzf#Key/Event_Bindings) within fzf to operate on the selected line:
135
-
-[open file in Vim](https://github.com/PatrickF1/fzf.fish/pull/273)
- add [fzf key bindings](https://www.mankier.com/1/fzf#Key/Event_Bindings) to [open files in Vim](https://github.com/PatrickF1/fzf.fish/pull/273)
138
135
- adjust the preview command or window
139
136
-[re-populate fzf's input list on demand](https://github.com/junegunn/fzf/issues/1750)
140
137
- change the [search mode](https://github.com/junegunn/fzf#search-syntax)
@@ -145,13 +142,13 @@ Find more ideas and implementation tips in the [Cookbook](https://github.com/Pat
145
142
146
143
[Search Directory][], by default, calls `ls` to preview directories and `bat` to preview [regular files](https://stackoverflow.com/questions/6858452).
147
144
148
-
To use your own directory preview command (e.g. to use one of the many `ls` replacements such as `exa`), set it in `fzf_preview_dir_cmd`:
145
+
To use your own directory preview command, set it in `fzf_preview_dir_cmd`:
149
146
150
147
```fish
151
148
set fzf_preview_dir_cmd exa --all --color=always
152
149
```
153
150
154
-
And to use your own file preview command (e.g. to `cat` to avoid having to install `bat`, or to add logic for previewing images), set it in `fzf_preview_file_cmd`:
151
+
And to use your own file preview command, set it in `fzf_preview_file_cmd`:
0 commit comments