I like using ido mode in emacs and the listing of directories with C-x C-d which runs ido-list-directory. Is there a command to enable ido-mode operation but at the current point like dired-at-point. I use this quite often but would prefer to use something like ido-dired-at-point.
Didn't know if this was already implemented and I just couldn't find it in the documentation or if it is easy to implement.
Looks like
ido-list-directory
is used for interactive completion oflist-directory
. So, if the thing at point is a filename, rather than use ido, usinglist-directory
directly should achieve the same end result.How about something like this:
EDIT:
or, if you want confirmation for the directory @ point (only for a
C-u
prefix) replace thelist-directory
sexp above with something like this: