From 4c14e0d1f2269a735e4bc93284ac2143a13c28a3 Mon Sep 17 00:00:00 2001 From: Bastien Date: Sat, 28 Apr 2018 12:57:15 +0200 Subject: [PATCH] org.el: New speed command "k" to kill the subtree at point * lisp/org.el (org-speed-commands-default): Add "k" to kill the subtree at point. --- etc/ORG-NEWS | 1 + lisp/org.el | 1 + 2 files changed, 2 insertions(+) diff --git a/etc/ORG-NEWS b/etc/ORG-NEWS index 776441d97..ef1a2558d 100644 --- a/etc/ORG-NEWS +++ b/etc/ORG-NEWS @@ -387,6 +387,7 @@ Set option ~org-src-window-setup~ to ~split-window-below~. When sorting alphabetically, ~org-sort-entries~ and ~org-tags-sort-function~ now sort according to the locale’s collation rules instead of by code-point. +*** New speed command "k" to kill (cut) the subtree at point * Version 9.1 ** Incompatible changes diff --git a/lisp/org.el b/lisp/org.el index f43fd0db6..97af4bb29 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -19095,6 +19095,7 @@ COMMANDS is a list of alternating OLDDEF NEWDEF command names." ("C" . org-shifttab) (" " . org-display-outline-path) ("s" . org-narrow-to-subtree) + ("k" . org-cut-subtree) ("=" . org-columns) ("Outline Structure Editing") ("U" . org-metaup)