commit f5b3825e2a55af8980eda3a112664a8139f31c3b parent 3ae8f78470f928f2df8c4a29eb0b6c5242344e38 Author: Alex Balgavy <alex@balgavy.eu> Date: Tue, 9 Aug 2022 23:58:10 +0200 emacs: change c-c g to m-g t instead M-g is like a 'super goto'. Diffstat:
M | emacs/config.org | | | 11 | ++++++----- |
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/emacs/config.org b/emacs/config.org @@ -475,12 +475,13 @@ Convenience functions to make opening the main file faster: Bind keys to those functions: #+begin_src emacs-lisp - (za/global-set-key (kbd "C-c g i") #'gtd-inbox) - (za/global-set-key (kbd "C-c g g") #'gtd) - (za/global-set-key (kbd "C-c g a") #'gtd-archive) - (za/global-set-key (kbd "C-c g s") #'gtd-someday) - (za/global-set-key (kbd "C-c g t") #'gtd-tickler) + (za/global-set-key (kbd "M-g t i") #'gtd-inbox) + (za/global-set-key (kbd "M-g t g") #'gtd) + (za/global-set-key (kbd "M-g t a") #'gtd-archive) + (za/global-set-key (kbd "M-g t s") #'gtd-someday) + (za/global-set-key (kbd "M-g t t") #'gtd-tickler) #+end_src + **** Refiling & archiving Where I want to be able to move subtrees (doesn't include inbox because I never refile to that, and the archive has its own keybining):