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)