From 6b1c2afe082ff36aaa37958f45e79824e0b39154 Mon Sep 17 00:00:00 2001 From: Lucien Cartier-Tilet Date: Mon, 20 Dec 2021 15:24:57 +0100 Subject: [PATCH] [Emacs] Add counsel keybindings, fix typo --- org/config/emacs.org | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/org/config/emacs.org b/org/config/emacs.org index de0b703..94298b3 100644 --- a/org/config/emacs.org +++ b/org/config/emacs.org @@ -3243,7 +3243,7 @@ from Git. :straight (xelb :build t :type git :host github - :repo "emacs-straiht/xelb" + :repo "emacs-straight/xelb" :fork "ch11ng/xelb")) #+end_src @@ -4266,6 +4266,7 @@ Let’s now define some keybinds for inserting stuff in our org buffer: | ie | org-set-effort | | | if | org-footnote-new | | | ih | org-insert-heading | | +| iH | counsel-org-link | | | ii | org-insert-item | | | il | org-insert-link | | | in | org-add-note | | @@ -6821,6 +6822,7 @@ Undefining some stuff to make keybind prefixes work correctly. <> "i" '(:ignore t :wk "insert") + "iu" #'counsel-unicode-char <> @@ -6909,6 +6911,7 @@ My buffer-related keybinds are all prefixed by ~b~. #+begin_src emacs-lisp :tangle no "e" '(:ignore t :which-key "errors") "e." '(hydra-flycheck/body :wk "hydra") +"el" #'counsel-flycheck "ee" '(:keymap flycheck-command-map :wk "flycheck") #+end_src