fzf vs helm, ivy and completing-read

1 · Shane Mulligan · Sept. 20, 2019, noon
Helm, ivy and completing-read are 3 emacs-lisp alternatives to fzf. They are all a little different to hack on / configure though. helm Select from a list There are different ways to select from a list. 1 2 3 4 5 6 7 8 9 10 11 12 13 (defun fz-must-match (list &optional prompt) (setq prompt (or prompt ":")) (helm-comp-read prompt list :must-match t)) ;; This is very useful (defun fz-default-return-query (list &optional prompt) (setq prompt (or prompt ":")) (helm-comp-read prompt list :must-match...