mirror of
https://github.com/protesilaos/dotfiles.git
synced 2026-09-10 07:16:20 -04:00
emacs: bind next/previous motion to org agenda key map
This commit is contained in:
parent
846ae00d1c
commit
91135aac55
|
|
@ -319,7 +319,10 @@
|
|||
("C-c a" . (lambda ()
|
||||
"Call Org agenda with `prot-org-custom-daily-agenda' configuration."
|
||||
(interactive)
|
||||
(org-agenda nil "A"))))
|
||||
(org-agenda nil "A")))
|
||||
:map org-agenda-mode-map
|
||||
("n" . org-agenda-next-item)
|
||||
("p" . org-agenda-previous-item))
|
||||
:config
|
||||
;;;;; Custom agenda blocks
|
||||
|
||||
|
|
|
|||
|
|
@ -8030,7 +8030,10 @@ from it and thus keeps me focused.
|
|||
("C-c a" . (lambda ()
|
||||
"Call Org agenda with `prot-org-custom-daily-agenda' configuration."
|
||||
(interactive)
|
||||
(org-agenda nil "A"))))
|
||||
(org-agenda nil "A")))
|
||||
:map org-agenda-mode-map
|
||||
("n" . org-agenda-next-item)
|
||||
("p" . org-agenda-previous-item))
|
||||
:config
|
||||
;;;;; Custom agenda blocks
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue