I mapped org-capture
with C-c c
like this:
(global-set-key (kbd "C-c c") #'org-capture)
Amongst my org-capture-template
, two have been set like this:
("i" "Inbox"
entry (file+datetree ,(concat captures-path "inbox.org"))
"* INBOX %?")
("j" "Journal Entry for tmp"
entry (file+datetree ,(concat captures-path "jtmp.org"))
"* %?" :empty-lines 1)
Since I use a lot these two, I would like to remap them respectively with C-i
and C-j
(Which are duplicates of TAB
and RET
). All my attempts failed...