org: Change org-insert-structure-template to C-c C-,

* lisp/org.el (org-mode-map):
* doc/org-manual.org (With): Change keybinding of
  org-insert-structure-template.

See the thread titled "Poll: new keybinding for
org-insert-structure-template?" in December 2017 for details.
This commit is contained in:
Rasmus 2018-04-07 20:16:56 +02:00
parent d04c20deec
commit 39837b4b31
2 changed files with 2 additions and 3 deletions

View file

@ -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.

View file

@ -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)