org: add key binding for org-toggle-checkbox

Problem
---

For basic toggling a checkbox (and adding / removing one with `SPC u`) for list
item at point one can use `,,`. However, there is no spacemacs key binding for
more advanced checkbox editing command `org-toggle-checkbox`.

Compare `C-c C-c` to `C-c C-x C-b` at https://orgmode.org/manual/Checkboxes.html

Solution
---

Add `SPC m T c` key binding for `org-toggle-checkbox`.
This commit is contained in:
Paul 2018-02-10 22:14:03 +01:00 committed by syl20bnr
parent fcd78d4379
commit f3a5b5a99b
2 changed files with 2 additions and 0 deletions

View File

@ -292,6 +292,7 @@ To permanently enable mode line display of org clock, add this snippet to your
| Key Binding | Description |
|-------------+-----------------------------------------------|
| ~SPC m T c~ | org-toggle-checkbox |
| ~SPC m T e~ | org-toggle-pretty-entities |
| ~SPC m T i~ | org-toggle-inline-images |
| ~SPC m T l~ | org-toggle-link-display |

View File

@ -188,6 +188,7 @@ Will work on both org-mode and any mode that accepts plain html."
"a" 'org-agenda
"Tc" 'org-toggle-checkbox
"Te" 'org-toggle-pretty-entities
"Ti" 'org-toggle-inline-images
"Tl" 'org-toggle-link-display