diff options
| author | João Távora | 2019-11-23 00:30:49 +0000 |
|---|---|---|
| committer | João Távora | 2019-11-23 00:30:49 +0000 |
| commit | 6d4d00c63417e3479e978a373f252b9f2709ce39 (patch) | |
| tree | 7d53a3602c471d11dcabd3091c8b8b7a70fdbffb | |
| parent | b7d4c5d1d1b55fea8382663f18263e2000678be5 (diff) | |
| download | emacs-6d4d00c63417e3479e978a373f252b9f2709ce39.tar.gz emacs-6d4d00c63417e3479e978a373f252b9f2709ce39.zip | |
* lisp/minibuffer.el (completion-flex-nospace): Default to t.
| -rw-r--r-- | lisp/minibuffer.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/minibuffer.el b/lisp/minibuffer.el index 399c4fe8bb2..b9e5d5a3a27 100644 --- a/lisp/minibuffer.el +++ b/lisp/minibuffer.el | |||
| @@ -3496,8 +3496,8 @@ that is non-nil." | |||
| 3496 | ;;; "flex" completion, also known as flx/fuzzy/scatter completion | 3496 | ;;; "flex" completion, also known as flx/fuzzy/scatter completion |
| 3497 | ;; Completes "foo" to "frodo" and "farfromsober" | 3497 | ;; Completes "foo" to "frodo" and "farfromsober" |
| 3498 | 3498 | ||
| 3499 | (defcustom completion-flex-nospace nil | 3499 | (defcustom completion-flex-nospace t |
| 3500 | "Make flex style fail when a space is found in pattern." | 3500 | "Non-nil if `flex' completion rejects spaces in search pattern." |
| 3501 | :version "27.1" | 3501 | :version "27.1" |
| 3502 | :type 'boolean) | 3502 | :type 'boolean) |
| 3503 | 3503 | ||