From 64876085bb5a34562a8dac7b2edb71cc195cec59 Mon Sep 17 00:00:00 2001 From: Lucien Cartier-Tilet Date: Sun, 2 May 2021 17:54:25 +0200 Subject: [PATCH] Add instructions for using ivy alternatives --- README.org | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.org b/README.org index 26028b2..7c5ee62 100644 --- a/README.org +++ b/README.org @@ -76,6 +76,18 @@ A couple of variables can be editer by the user in order to configure This specific example will recursively search for all ~.org~ files in =~/org=, all ~.html~ files in ~/tmp~, and all ~.h~ files in =~/code/C=. +* I don’t want to use Ivy, I want to use +You can still use this package then! I made the function +~ivy-quick-find-files-list-files~ specifically for this kind of +situation. For instance, if you are an ido user, you could write an +~ido-quick-find-files-list-files~ function like so: +#+begin_src emacs-lisp + (defun my/ido-quick-find-files () + (interactive) + (find-file (ido-completing-read "Open file: " + (ivy-quick-find-files-list-files)))) +#+end_src + * Upcoming changes Plans exist to customize the maximum depth at which ~find~ and ~fd~ are to search for files.