Created
January 29, 2014 09:33
-
-
Save ype/8684551 to your computer and use it in GitHub Desktop.
org-mode-clock-in-default
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 characters
;;Add your default-elisp task id to "id-of-default-elisp-task" | |
(defvar ype/default-elisp-id "id-of-default-elisp-task") | |
;;This lets you M-x to your elisp task | |
(defun ype/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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment