emacs: bind next/previous motion to org agenda key map

This commit is contained in:
Protesilaos Stavrou 2025-06-09 07:59:53 +03:00
parent 846ae00d1c
commit 91135aac55
No known key found for this signature in database
GPG key ID: 99BD6459CD5CA3EA
2 changed files with 8 additions and 2 deletions

View file

@ -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

View file

@ -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