From a44aa253aa571608b45424d6a4f3d9e0dffd5851 Mon Sep 17 00:00:00 2001 From: Charlotte Van Petegem Date: Mon, 24 Apr 2023 10:48:53 +0200 Subject: [PATCH] Add keybindings for cutting and pasting subtrees --- modules/base/emacs/base-init.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/base/emacs/base-init.el b/modules/base/emacs/base-init.el index 12b8aa99..fa72670d 100644 --- a/modules/base/emacs/base-init.el +++ b/modules/base/emacs/base-init.el @@ -255,6 +255,8 @@ "SPC <" '(org-promote-subtree :which-key "Decrease level") "SPC >" '(org-demote-subtree :which-key "Increase level") "SPC c" '(orc-clone-subtree-with-time-shift :which-key "Repeat subtree") + "SPC x" '(org-cut-subtree :which-key "Cut subtree") + "SPC p" '(org-paste-subtree :which-key "Paste subtree") ) (lmap "o a" '(org-agenda-list :which-key "Agenda")