[Fix #1547] Make org-ctrl-c-ctrl-c fallback to <Leader>m,.

Fixes errors when dotspacemacs-major-mode-leader-key is nil.
This commit is contained in:
person808 2015-05-10 08:29:52 -10:00 committed by syl20bnr
parent 744b9ef656
commit f77035da9a
1 changed files with 22 additions and 20 deletions

View File

@ -73,7 +73,9 @@
"mI" 'org-clock-in
"mj" 'helm-org-in-buffer-headings
(concat "m" dotspacemacs-major-mode-leader-key) 'org-ctrl-c-ctrl-c
(if dotspacemacs-major-mode-leader-key
(concat "m" dotspacemacs-major-mode-leader-key)
"m,") 'org-ctrl-c-ctrl-c
"mn" 'org-narrow-to-subtree
"mN" 'widen
"mO" 'org-clock-out