mirror of
https://github.com/masscollaborationlabs/emacs.git
synced 2025-07-15 08:21:18 +00:00
Correct Fido-mode's backspacing of directories with spaces
Fixes: bug#40625 * lisp/icomplete.el (icomplete-fido-backward-updir): Use zap-up-to-char.
This commit is contained in:
parent
660b9b8cfb
commit
145a151d62
1 changed files with 1 additions and 1 deletions
|
@ -300,7 +300,7 @@ if that doesn't produce a completion match."
|
||||||
(interactive)
|
(interactive)
|
||||||
(if (and (eq (char-before) ?/)
|
(if (and (eq (char-before) ?/)
|
||||||
(eq (icomplete--category) 'file))
|
(eq (icomplete--category) 'file))
|
||||||
(backward-kill-sexp 1)
|
(zap-up-to-char -1 ?/)
|
||||||
(call-interactively 'backward-delete-char)))
|
(call-interactively 'backward-delete-char)))
|
||||||
|
|
||||||
(defvar icomplete-fido-mode-map
|
(defvar icomplete-fido-mode-map
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue