- 
      
 - 
        
Save alexpos/8684574 to your computer and use it in GitHub Desktop.  
Revisions
- 
        
anton created this gist
Jan 29, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,17 @@ ;;Add your default-elisp task id to "id-of-default-elisp-task" (defvar p_e/default-elisp-id "id-of-default-elisp-task") ;;This lets you M-x to your elisp task (defun p_e/clock-in-default-elisp () (interactive) (org-with-point-at (org-id-find p_e/default-elisp-id 'marker) (org-clock-in '(16)))) ;;In the elisp task do something like this... ;; *** Elisp ;; :PROPERTIES: ;; :ID: emacs should generate this automagically ;; :EFFORT: 1.00 ;; :END: ;; ;;Here's a helpful link I followed to get my org-mode setup: http://doc.norang.ca/org-mode.html