[O] shortcut to create a heading already with todo included

2013-07-23 Thread Xebar Saram
Hya guys i know this is probably a silly question but does anyone know how to make a shortcut that inserts a heading which already includes a TODO state? i have a main file named todo.org in which all heading are todos. each time i need to do a 2 step process: add heading and then add a todo

Re: [O] shortcut to create a heading already with todo included

2013-07-23 Thread Oleh
Hi, This task is handled with capture templates. Here's how I do it: (setq org-capture-templates '((t Todo entry (file+headline (concat org.d gtd.org) Tasks) * TODO %^{Brief Description} %^g\n%?\nAdded: %U %i\n) ;; more templates here )) (global-set-key (kbd C-~) 'org-capture)

Re: [O] shortcut to create a heading already with todo included

2013-07-23 Thread Darlan Cavalcante Moreira
Capture is the way to go for a general (and anyware) way to create TODOs. But for something simple, you can use M-return to create a new headline in org-mode and M-S-return to create a headline with a TODO. -- Darlan Cavalcante Moreira darc...@gmail.com ohwoeo...@gmail.com writes: Hi,