Next: Global Defaults, Up: Org Setup [Index]
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:
org-agenda
(global-set-key (kbd "C-c a") 'org-agenda)
org-capture
(global-set-key (kbd "C-c c") 'org-capture)
org-store-link
(global-set-key (kbd "C-c l") 'org-store-link)