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")
|
;;;###autoload(autoload 'oni-hydra-org/body "oni-org")
|
||||||
(defhydra oni-hydra-org (:color teal :hint nil)
|
(defhydra oni-hydra-org (:color teal :hint nil)
|
||||||
"
|
"
|
||||||
^Org^
|
^Tasks^ ^Buffer^ ^Capture^
|
||||||
^^-----------------------
|
^^---------------------------------------------------------------------
|
||||||
_a_: Show Agenda
|
_a_: Show Agenda _b_: Switch to org buffer _t_: Note
|
||||||
_c_: Capture new heading
|
_c_: Capture new heading _s_: Save all org buffers _A_: Appointment
|
||||||
_l_: Store link
|
_l_: Store link ^^ _j_: Journal entry
|
||||||
_b_: Switch to org buffer
|
|
||||||
"
|
"
|
||||||
("l" org-store-link)
|
("l" org-store-link)
|
||||||
("a" org-agenda)
|
("a" org-agenda)
|
||||||
("c" org-capture)
|
("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
|
(setq org-default-notes-file
|
||||||
(oni-org-expand-to-home "documents/gtd/inbox.org"))
|
(oni-org-expand-to-home "documents/gtd/inbox.org"))
|
||||||
|
|
Loading…
Reference in a new issue