Next: , Up: Org Setup   [Index]


2.1 Global Keys

The three Org commands:

ought to be accessible anywhere in Emacs, not just in Org buffers. To that effect, you need to bind them to globally available keys, like the ones reserved for users, (elisp)Key Binding Conventions,

i.e., sequences beginning with ‘C-c’ and then a letter (upper or lower case). Here are suggested bindings:

C-c a

org-agenda (global-set-key (kbd "C-c a") 'org-agenda)

C-c c

org-capture (global-set-key (kbd "C-c c") 'org-capture)

C-c l

org-store-link (global-set-key (kbd "C-c l") 'org-store-link)