summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOmar Antolín <omar.antolin@gmail.com>2020-04-14 00:16:21 -0500
committerOmar Antolín <omar.antolin@gmail.com>2020-04-14 00:16:21 -0500
commitcd24e47c961af40d76506f4606f0dd4b87eb30fc (patch)
treedec6b4a9411a9104961f54eee8df5661f72f7375
parent0efa87672de2bd11b27fa4dc286163c42a9ce402 (diff)
Corrected very misleading typo
-rw-r--r--README.org4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.org b/README.org
index 246a238..6d517eb 100644
--- a/README.org
+++ b/README.org
@@ -15,7 +15,7 @@ Completion styles are used as entries in the variables
documentation.
By default the space key is bound to =minibuffer-complete-word= in
-=minibuffer-local-map=, which isn't useful with this completion method.
+=minibuffer-local-completion-map=, which isn't useful with this completion method.
So, if you use it, you should probably unbind SPC.
So to test this completion method you can put =orderless.el= somewhere
@@ -24,5 +24,5 @@ on your =load-path=, and use the following configuration:
#+begin_src emacs-lisp
(require 'orderless)
(setq completion-styles '(orderless))
-(define-key minibuffer-local-map (kbd "SPC") nil)
+(define-key minibuffer-local-completion-map (kbd "SPC") nil)
#+end_src