Merge pull request #1392 from brabalan/org-agenda-localleader
Add localleader bindings to org-agenda
This commit is contained in:
commit
7ffa1d2d91
1 changed files with 9 additions and 1 deletions
|
@ -249,6 +249,7 @@ between the two."
|
||||||
"T" #'org-todo-list
|
"T" #'org-todo-list
|
||||||
"l" #'org-insert-link
|
"l" #'org-insert-link
|
||||||
"L" #'org-store-link
|
"L" #'org-store-link
|
||||||
|
"q" #'org-set-tags
|
||||||
"r" #'org-refile
|
"r" #'org-refile
|
||||||
"s" #'org-schedule
|
"s" #'org-schedule
|
||||||
"'" #'org-edit-special
|
"'" #'org-edit-special
|
||||||
|
@ -303,8 +304,15 @@ between the two."
|
||||||
"c" #'org-table-create
|
"c" #'org-table-create
|
||||||
"r" #'org-table-recalculate
|
"r" #'org-table-recalculate
|
||||||
"e" #'org-table-edit-formulas
|
"e" #'org-table-edit-formulas
|
||||||
"=" #'org-table-eval-formulas))))
|
"=" #'org-table-eval-formulas)))
|
||||||
|
|
||||||
|
(map! :map org-agenda-mode-map
|
||||||
|
:localleader
|
||||||
|
"d" #'org-agenda-deadline
|
||||||
|
"q" #'org-agenda-set-tags
|
||||||
|
"r" #'org-agenda-refile
|
||||||
|
"s" #'org-agenda-schedule
|
||||||
|
"t" #'org-agenda-todo))
|
||||||
|
|
||||||
(defun +org|setup-evil-keybinds (&rest args)
|
(defun +org|setup-evil-keybinds (&rest args)
|
||||||
(unless args ; lookout for recursive requires
|
(unless args ; lookout for recursive requires
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue