Skip to content

Instantly share code, notes, and snippets.

@Idorobots
Created December 6, 2012 21:27
Show Gist options
  • Save Idorobots/4228636 to your computer and use it in GitHub Desktop.
Save Idorobots/4228636 to your computer and use it in GitHub Desktop.
Org-Capture targets
(setq org-capture-templates
(list* `("1" "New easy quest." entry (file "")
,(concat "* TODO %?\nSCHEDULED: %t\n"
":PROPERTIES:\n"
":gamify_exp: %(gamify-assign-some-exp 5 2)\n"
":END:\n"
"%U\n%a\n %i\n"))
`("2" "New medium quest." entry (file "")
,(concat "* TODO %?\nSCHEDULED: %t\n"
":PROPERTIES:\n"
":gamify_exp: %(gamify-assign-some-exp)\n"
":END:\n"
"%U\n%a\n %i\n"))
`("3" "New hard quest." entry (file "")
,(concat "* TODO %?\nSCHEDULED: %t\n"
":PROPERTIES:\n"
":gamify_exp: %(gamify-assign-some-exp 30 10)\n"
":END:\n"
"%U\n%a\n %i\n"))
org-capture-templates))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment