-
Notifications
You must be signed in to change notification settings - Fork 170
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat:
--expect
improvements with upcoming fzf 0.53
Once fzf 0.53 is releases adding fzf prefix for actions will become much easier due to junegunn/fzf#3810 A few examples below. Adding a prefix to an already existing action (`alt-q` send to quickfix): ```lua :FzfLua live_grep keymap.fzf.alt-q=select-all ``` Using a different (or custom) action: ```lua :lua require("fzf-lua").files({ actions ={ ["ctrl-q"] = { fn = require"fzf-lua".actions.file_sel_to_qf, prefix = "select-all+accept" } } }) ```
- Loading branch information
Showing
2 changed files
with
36 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters