Skip to content
Chris Matzenbach edited this page Nov 19, 2018 · 1 revision
(major-mode-hydra-bind org-mode "Clock"
  ("ci" org-clock-in "in")
  ("co" org-clock-out "out")
  ("cq" org-clock-cancel "cancel")
  ("cs" org-clock-display "summary")
  ("cj" org-clock-goto "jump"))
(major-mode-hydra-bind org-mode "Editing"
  ("mh" org-ctrl-c-star "modify heading type")
  ("mi" org-ctrl-c-minus "modify item type")
  ("mt" org-todo "modify todo state")
  ("so" org-sort "sort subtree/reg/list")
  ("st" org-set-tags-command "set tag for heading")
  ("is" org-sparse-tree "insert sparse tree")
  ("it" org-table-create "insert table"))
(major-mode-hydra-bind org-mode "Date"
  ("ds" org-schedule "set schedule")
  ("dd" org-deadline "set deadline")
  ("dt" org-time-stamp "timestamp"))
(major-mode-hydra-bind org-mode "Display"
  ("w" toggle-truncate-lines "toggle line wrap")
  ("*" display-entire-org-file "show whole file")
  ("r" org-reveal "org-reveal")
  ("q" nil "quit"))
Clone this wiki locally