Skip to content

Instantly share code, notes, and snippets.

@trepca
Created September 18, 2010 18:06
Show Gist options
  • Save trepca/585901 to your computer and use it in GitHub Desktop.
Save trepca/585901 to your computer and use it in GitHub Desktop.
; you also need to enable org-protocol in your org-modules variable
(setq org-modules (quote (org-protocol)))
(setq org-capture-templates (quote (("t" "todo" entry (file "~/org/inbox.org") "* TODO %?
%U
%a" :clock-in t :clock-resume t)
("n" "note" entry (file "~/org/inbox.org") "* %? :NOTE:
%U
%a
:CLOCK:
:END:" :clock-in t :clock-resume t)
("w" "org-protocol" entry (file "~/org/inbox.org") "* TODO %i
%U" :immediate-finish t :clock-in t :clock-resume t))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment