diff --git a/doc/org-manual.org b/doc/org-manual.org index 82639445c..fc53957bd 100644 --- a/doc/org-manual.org +++ b/doc/org-manual.org @@ -18170,7 +18170,7 @@ With just a few keystrokes, it is possible to insert empty structural blocks, such as =#+BEGIN_SRC= ... =#+END_SRC=, or to wrap existing text in such a block. -- {{{kbd(C-c C-x w)}}} (~org-insert-structure-template~) :: +- {{{kbd(C-c C-,)}}} (~org-insert-structure-template~) :: Prompt for a type of block structure, and insert the block at point. If the region is active, it is wrapped in the block. diff --git a/lisp/org.el b/lisp/org.el index 4fd5dce51..010a59b8d 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -19157,8 +19157,7 @@ COMMANDS is a list of alternating OLDDEF NEWDEF command names." (org-defkey org-mode-map (kbd "C-c C-x E") #'org-inc-effort) (org-defkey org-mode-map (kbd "C-c C-x o") #'org-toggle-ordered-property) (org-defkey org-mode-map (kbd "C-c C-x i") #'org-columns-insert-dblock) -(org-defkey org-mode-map (kbd "C-c C-x w") #'org-insert-structure-template) - +(org-defkey org-mode-map (kbd "C-c C-,") #'org-insert-structure-template) (org-defkey org-mode-map (kbd "C-c C-x .") #'org-timer) (org-defkey org-mode-map (kbd "C-c C-x -") #'org-timer-item) (org-defkey org-mode-map (kbd "C-c C-x 0") #'org-timer-start)