Variable: org-capture-mode-map
org-capture-mode-map is a variable defined in org-capture.el.gz.
Value
C-c C-c org-capture-finalize
C-c C-k org-capture-kill
C-c C-w org-capture-refile
Documentation
Keymap for org-capture-mode(var)/org-capture-mode(fun), a minor mode.
Use this map to set additional keybindings for when Org mode is used for a capture buffer.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-capture.el.gz
;;; The minor mode
(defvar org-capture-mode-map
(let ((map (make-sparse-keymap)))
(define-key map "\C-c\C-c" #'org-capture-finalize)
(define-key map "\C-c\C-k" #'org-capture-kill)
(define-key map "\C-c\C-w" #'org-capture-refile)
map)
"Keymap for `org-capture-mode', a minor mode.
Use this map to set additional keybindings for when Org mode is used
for a capture buffer.")