diff options
| author | João Távora <joaotavora@gmail.com> | 2020-06-05 23:36:55 +0100 |
|---|---|---|
| committer | João Távora <joaotavora@gmail.com> | 2020-06-05 23:38:21 +0100 |
| commit | 3916e63f9e98269930c4935dd5b3b88c4d940a62 (patch) | |
| tree | b359c828289cd547cdc0b2f9a7a5673726bf54b6 /lisp | |
| parent | cc35b197c7720e0687c6a994df9a4cf767298712 (diff) | |
| download | emacs-3916e63f9e98269930c4935dd5b3b88c4d940a62.tar.gz | |
Have Fido mode also imitate Ido mode in ignore-case options
Suggested by Sean Whitton <spwhitton@spwhitton.name>.
* lisp/icomplete.el (icomplete--fido-mode-setup): Set ignore-case
options.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/icomplete.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/icomplete.el b/lisp/icomplete.el index c12f3901f09..60ef0247bae 100644 --- a/lisp/icomplete.el +++ b/lisp/icomplete.el @@ -330,7 +330,10 @@ if that doesn't produce a completion match." icomplete-hide-common-prefix nil completion-styles '(flex) completion-flex-nospace nil - completion-category-defaults nil))) + completion-category-defaults nil + completion-ignore-case t + read-buffer-completion-ignore-case t + read-file-name-completion-ignore-case t))) ;;;###autoload (define-minor-mode fido-mode |
