Add some more commands to org-hydra
This commit is contained in:
parent
0d4c8f1880
commit
c1106dfb3d
1 changed files with 10 additions and 7 deletions
|
@ -166,17 +166,20 @@ After running it once remove it from `org-capture-after-finalize-hook'."
|
|||
;;;###autoload(autoload 'oni-hydra-org/body "oni-org")
|
||||
(defhydra oni-hydra-org (:color teal :hint nil)
|
||||
"
|
||||
^Org^
|
||||
^^-----------------------
|
||||
_a_: Show Agenda
|
||||
_c_: Capture new heading
|
||||
_l_: Store link
|
||||
_b_: Switch to org buffer
|
||||
^Tasks^ ^Buffer^ ^Capture^
|
||||
^^---------------------------------------------------------------------
|
||||
_a_: Show Agenda _b_: Switch to org buffer _t_: Note
|
||||
_c_: Capture new heading _s_: Save all org buffers _A_: Appointment
|
||||
_l_: Store link ^^ _j_: Journal entry
|
||||
"
|
||||
("l" org-store-link)
|
||||
("a" org-agenda)
|
||||
("c" org-capture)
|
||||
("b" org-switchb))
|
||||
("b" org-switchb)
|
||||
("s" org-save-all-org-buffers)
|
||||
("t" (org-capture nil "t"))
|
||||
("A" (org-capture nil "a"))
|
||||
("j" (org-capture nil "j")))
|
||||
|
||||
(setq org-default-notes-file
|
||||
(oni-org-expand-to-home "documents/gtd/inbox.org"))
|
||||
|
|
Loading…
Reference in a new issue