Add default keybinding for org-capture

It adds the default keybinding for the `org-capture` function, as stated
in its documentation it should be `C-c c`.
This commit is contained in:
Alejandro Catalina Feliú 2016-01-12 22:16:15 +01:00 committed by syl20bnr
parent efc94a20e5
commit f93e9376cf
1 changed files with 1 additions and 0 deletions

View File

@ -270,6 +270,7 @@ Will work on both org-mode and any mode that accepts plain html."
(require 'org-indent)
(define-key global-map "\C-cl" 'org-store-link)
(define-key global-map "\C-ca" 'org-agenda)
(define-key global-map "\C-cc" 'org-capture)
;; Open links and files with RET in normal state
(evil-define-key 'normal org-mode-map (kbd "RET") 'org-open-at-point)