mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
use fzf instead of peco
This commit is contained in:
parent
48a4e3f8ec
commit
6cee360185
1 changed files with 2 additions and 2 deletions
|
@ -53,8 +53,8 @@ unset widget_{name,info,key,keys}
|
|||
|
||||
# command palette allows you to search for widgets
|
||||
_command-palette() {
|
||||
# widget is selected with 'peco', a 'Simplistic interactive filtering tool'
|
||||
local widget="$(echo "$widgets_str" | peco)"
|
||||
# widget is selected with a fuzzy finder
|
||||
local widget="$(echo "$widgets_str" | fzf)"
|
||||
if [[ -n "$widget" ]]; then
|
||||
# parse widget name by cutting the selected string to the first space (which
|
||||
# may contain keybindings)
|
||||
|
|
Loading…
Reference in a new issue