summaryrefslogtreecommitdiff
path: root/README.org
diff options
context:
space:
mode:
authorOmar Antolín <omar.antolin@gmail.com>2020-04-13 22:37:32 -0500
committerOmar Antolín <omar.antolin@gmail.com>2020-04-13 22:37:32 -0500
commit105a00478473cf53fdee81102cd130ea8001261d (patch)
tree41c7f666147fd324ff26b6b8fda6352d08f37bb9 /README.org
parent7c83d76f16b609a61e38f2287e8f2627e3345daa (diff)
Improve installation instructions
Diffstat (limited to 'README.org')
-rw-r--r--README.org9
1 files changed, 4 insertions, 5 deletions
diff --git a/README.org b/README.org
index 5d27b96..246a238 100644
--- a/README.org
+++ b/README.org
@@ -1,9 +1,7 @@
* Warning
This package is experminental! It probably has many bugs, and reports
-of them are greatly appreciated. In fact, the current purpose of this
-package isn't really to implement usable out of order completion, but
-to figure out how to do that.
+of them are greatly appreciated. Consider a proof of concept.
* Overview
@@ -20,10 +18,11 @@ By default the space key is bound to =minibuffer-complete-word= in
=minibuffer-local-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 use the following
-configuration:
+So to test this completion method you can put =orderless.el= somewhere
+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)
#+end_src