diff options
author | fpi | 2021-01-21 15:53:09 +0100 |
---|---|---|
committer | fpi | 2022-03-17 14:37:56 +0100 |
commit | 539d52ecf1bf96b95129e881afd032c7d2b3564c (patch) | |
tree | 24bded1b1491e12ba7d3ca0c2878e92cae4b608d | |
parent | Enable exwm if $DESKTOP_SESSION is exwm (diff) |
Fix conflict in C-c n t binding
-rw-r--r-- | emacs-init.org | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/emacs-init.org b/emacs-init.org index d4b3d02..6d5d674 100644 --- a/emacs-init.org +++ b/emacs-init.org @@ -3972,8 +3972,9 @@ The idea of ~fpi/org-roam-todo~ is from a post by [[https://oremacs.com/2020/12/ (counsel-rg "^\\*+ \\(NEXT\\|TODO\\)" org-roam-directory "--sort modified")) #+end_src +As =C-c n t= is already taken as prefix for roam related toggle commands, use =o= (mnemonic: “open”) instead. #+begin_src emacs-lisp :tangle no :noweb-ref org-roam-bindings -("C-c n t" . fpi/org-roam-todo) +("C-c n o" . fpi/org-roam-todo) #+end_src |