From 6cee360185cdcb69bbd2954110279bc43bf2ce5c Mon Sep 17 00:00:00 2001 From: Dmytro Meleshko Date: Sun, 13 Jan 2019 16:13:59 +0200 Subject: [PATCH] use fzf instead of peco --- lib/widgets.zsh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/widgets.zsh b/lib/widgets.zsh index 3d1ff09..b196c45 100644 --- a/lib/widgets.zsh +++ b/lib/widgets.zsh @@ -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)