consult-dir
consult-dir copied to clipboard
Insert paths into the minibuffer prompt in Emacs
This is what I would like to achieve: 1. From `consult-buffer` invoke `consult-dir` 2. Select directory 3. Select file 4. Open file directly, don't drop back to `consult-buffer`. So basically...
It would be nice if we could embed the find-file-in-project in Consult-dir. find-file-in-project lets you recursively search in every dir.
Is there a good way to replace `read-directory-name` with `consult-dir`? Looks like including all the features of `read-directory-name` would require some additional code.
If, after invoking `consult-dir`, I find there isn't the completion I'm looking for can I just enter the path manually? Say `/srv` Thanks!
As mentioned in the title, using `consult-dir` from the minibuffer, requires the variable of `enable-recursive-minibuffers` set to t. I could not find this being documented. Otherwise, it probably would be...
Hi, I see that https://github.com/karthink/consult-dir/commit/d3bb96abb5ccca29f4b04c6f623818386167a2b2 added a constraint so bookmarks with a handler like: ``` emacs-lisp ("ndev9al" (handler . eshell-bookmark--restore) (filename . #("/ssh:ndev9al.example.org:/" 5 20 (escaped t)))) ``` are be...
If I run `consult-dir` from `find-file` and a selected path is too long, vertico's input is truncated and doesn't work properly until I press `TAB`. It could be fixed with...
Hi! Fantastic package -- what do you think about adding support for bmkp's dired directories? They have a non-nil handler.
Hi Karthik, I tried to improve my eshell experience a little bit yesterday. What about including the eshell directory source from your [post](https://karthinks.com/software/jumping-directories-in-eshell/) by default? ~~~ elisp (defvar eshell-last-dir-ring) (declare-function...