branch: externals/vertico
commit 8cd5e5a69edf494e832446e98f28783472fba5c3
Author: Daniel Mendler <[email protected]>
Commit: Daniel Mendler <[email protected]>
README: Fix Org-related snippet (See #410)
---
README.org | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/README.org b/README.org
index 77486a79d2..7c54e0cc65 100644
--- a/README.org
+++ b/README.org
@@ -554,9 +554,9 @@ built-in file completion table. In your user configuration
you can prioritize
(minibuffer-with-setup-hook
(:append
(lambda ()
- (let ((map (make-sparse-keymap (current-local-map))))
+ (let ((map (make-sparse-keymap)))
(define-key map [tab] #'minibuffer-complete)
- (use-local-map map))
+ (use-local-map (make-composed-keymap (list map)
(current-local-map))))
(setq-local completion-styles (cons 'basic completion-styles)
vertico-preselect 'prompt)))
(apply args)))