fzf.kak v1.0.1 release
This is major update of fzf.kak that brings new features, and some bug fixes.
Changelog
- Exposed support of different terminals via `terminal’ command #40
- Fixed VCS modules not respecting current pwd #42
- Rewritten main fzf function #43
fzf
command now supports arguments in any order via switches. Switches available:-
-kak-cmd
: A Kakoune command that is applied tofzf
resulting value, e.g.
edit -existing
,change-directory
, e.t.c. -
-multiple-cmd
: A Kakoune command that is applied when multiple items
selected to every item but the first one. -
-items-cmd
: A command that is used as a pipe to provide list of values to
fzf
. For example, if we want to pass list of all files recursively in
current directory, we would use-items-cmd %{find .}
which will be piped to
fzf
tool. -
-fzf-impl
: Overridefzf
implementation variable. Can be used if command
needs to provide a different arguments tofzf
. -
-fzf-args
: Additional flags forfzf
program. -
-preview-cmd
: A preview command. Can be used to override default preview
handling. -
-preview
: If specified, command will ask for preview. -
-filter
: A pipe which will be applied to result provided byfzf
. For
example, if we are returning such line3 hello, world!
fromfzf
, and we
are interested only in the first field which is3
, we can use-filter %{cut -f 1}
. -
-post-action
: Extra commands that are preformed after-kak-cmd
command.
-
-
*grep*
buffer is now populated with extra items #44 - Plugin files now can be loaded in any order #45
- Some options were renamed, so configuration update may be needed