Previous: On Writing Markdown, Up: Readme [Index]
Org-mode is a powerful system for organizing your complex life with simple plain-text files. It seamlessly integrates all your
into a single system that can be easily
It can even be used for authoring web pages and documents.
apropos
‘[C-u] M-x apropos <pattern>’
apropos-command
‘[C-u] C-h a <word>’
describe-variable
‘C-h v <word>’
describe-function
‘C-h f <word>’
Activate the org-timer module: (add-to-list ’org-modules ’org-timer)
Set a default value for the timer, for example: (setq org-timer-default-timer 25)
Modify the org-clock-in so that a timer is started with the default value except if a timer is already started: (add-hook ’org-clock-in-hook (lambda () (if (not org-timer-current-timer) (org-timer-set-timer ’(16)))))
Previous: On Writing Markdown, Up: Readme [Index]