diff options
author | jao <jao@gnu.org> | 2021-05-26 01:37:27 +0100 |
---|---|---|
committer | jao <jao@gnu.org> | 2021-05-26 01:37:27 +0100 |
commit | 20a219bf5d1ff727288f6eb7abe93b0bab301558 (patch) | |
tree | 46bb9c275c70bcdb75e5233dd095103b3bd82f19 | |
parent | 4228e3f0a8ecfdb056debcc3f592147d89608f21 (diff) | |
download | elibs-20a219bf5d1ff727288f6eb7abe93b0bab301558.tar.gz elibs-20a219bf5d1ff727288f6eb7abe93b0bab301558.tar.bz2 |
completion: dabbrev-expand is fine at M-/
-rw-r--r-- | completion.org | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/completion.org b/completion.org index 27aa62e..797796c 100644 --- a/completion.org +++ b/completion.org @@ -1,4 +1,4 @@ -#+title: Completion configuration using vertico, consult and friends +#+title: Completion configuration #+property: header-args :lexical t :tangle yes :comments yes :results silent :shebang ";; -*- lexical-binding: t; -*-" #+auto_tangle: t @@ -27,10 +27,10 @@ (use-package emacs :init (setq tab-always-indent 'complete)) - (use-package dabbrev - ;; Swap M-/ and C-M-/ - :bind (("M-/" . dabbrev-completion) - ("C-M-/" . dabbrev-expand))) + ;; (use-package dabbrev + ;; ;; Swap M-/ and C-M-/ + ;; :bind (("M-/" . dabbrev-completion) + ;; ("C-M-/" . dabbrev-expand))) (use-package corfu :ensure t @@ -41,7 +41,7 @@ ("TAB" . corfu-next) ("S-TAB" . corfu-previous))) - (corfu-global-mode) + (corfu-global-mode 1) #+end_src * vertico #+begin_src emacs-lisp |