use fzf instead of peco

This commit is contained in:
Dmytro Meleshko 2019-01-13 16:13:59 +02:00
parent 48a4e3f8ec
commit 6cee360185
1 changed files with 2 additions and 2 deletions

View File

@ -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)