summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Mendler <mail@daniel-mendler.de>2021-11-22 19:39:53 +0100
committerDaniel Mendler <mail@daniel-mendler.de>2021-11-22 19:46:30 +0100
commit97eacd933dc21c5949f52653f41b2fb59ea3b75d (patch)
tree2019af49b9e91952cbf260129f9ab24f6a4a8499
parent6c124b6cfd867d556bd32af2a8407283518107e5 (diff)
README: Update example
-rw-r--r--README.org4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.org b/README.org
index 6d5f0a9..ce8ebdf 100644
--- a/README.org
+++ b/README.org
@@ -81,7 +81,7 @@ feature is experimental and works only for well-behaved Capfs and simple
completion tables. But it is a start to emulate the corresponding Company feature.
#+begin_src emacs-lisp
- ;; Merge the dabbrev and dict capfs, display candidates together.
+ ;; Merge the dabbrev, dict and keyword capfs, display candidates together.
(setq-local completion-at-point-functions
- (list (cape-merge-capfs #'cape-dabbrev-capf #'cape-dict-capf)))
+ (list (cape-merge-capfs #'cape-dabbrev-capf #'cape-dict-capf #'cape-keyword-capf)))
#+end_src