[org] Add org-clock key bindings

This commit is contained in:
Allen Li 2016-10-05 22:53:18 -07:00 committed by Eivind Fonn
parent 927cccbd99
commit aed35fc6ef
2 changed files with 4 additions and 0 deletions

View File

@ -148,6 +148,8 @@ the following snippet. Note that this may have unintended consequences until
| ~SPC a o a~ | org agenda list |
| ~SPC a o c~ | org capture |
| ~SPC a o e~ | org store agenda views |
| ~SPC a o i~ | org clock in last |
| ~SPC a o j~ | org jump to current clock |
| ~SPC a o l~ | org store link |
| ~SPC a o m~ | org tags view |
| ~SPC a o o~ | org agenda |

View File

@ -284,6 +284,8 @@ Will work on both org-mode and any mode that accepts plain html."
;; other
"aoO" 'org-clock-out
"aoc" 'org-capture
"aoi" 'org-clock-in-last
"aoj" 'org-clock-jump-to-current-clock
"aol" 'org-store-link)
(define-key global-map "\C-cl" 'org-store-link)