diff options
author | Case Duckworth | 2021-01-28 12:47:18 -0600 |
---|---|---|
committer | Case Duckworth | 2021-01-28 12:47:18 -0600 |
commit | 142d8a8ab36f77de91992e255d18ce37087795c9 (patch) | |
tree | b7014432121455122b8a2a16146701fb879005b3 | |
parent | Configure crossword (diff) | |
download | emacs-142d8a8ab36f77de91992e255d18ce37087795c9.tar.gz emacs-142d8a8ab36f77de91992e255d18ce37087795c9.zip |
Change keybindings to actually work
The <help> ... key? ... isn't picked up for whatever reason.
-rw-r--r-- | config.org | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/config.org b/config.org index 9a20ec5..6bf88bb 100644 --- a/config.org +++ b/config.org | |||
@@ -806,7 +806,8 @@ default completion system. These all come from the [[https://github.com/minad/c | |||
806 | (define-key acdw/map (kbd "M-s u") #'consult-focus-lines) | 806 | (define-key acdw/map (kbd "M-s u") #'consult-focus-lines) |
807 | ;; Other bindings | 807 | ;; Other bindings |
808 | (define-key acdw/map (kbd "M-y") #'consult-yank-pop) | 808 | (define-key acdw/map (kbd "M-y") #'consult-yank-pop) |
809 | (define-key acdw/map (kbd "<help> a") #'consult-apropos)) | 809 | (define-key acdw/map (kbd "<f1> a") #'consult-apropos) |
810 | (define-key acdw/map (kbd "C-h a") #'consult-apropos)) | ||
810 | #+end_src | 811 | #+end_src |
811 | 812 | ||
812 | #+begin_src emacs-lisp :noweb-ref settings | 813 | #+begin_src emacs-lisp :noweb-ref settings |