Hello, I have created a simple custom agenda view that restricts the items to consider to those from just two files: --8<---------------cut here---------------start------------->8--- (setq org-agenda-custom-commands '(("d" agenda "Only items from todo and diary" ((org-agenda-files '("~/git/notes/diary.org" "~/git/notes/tasks.org")) (agenda)) ))) --8<---------------cut here---------------end--------------->8--- Dispatching this using "C-c a d" works just fine and moving within this view using 'f' and 'p' also works; however, jumping using 'j' from within the agenda view causes the agenda display to revert to the default settings as if I had invoked it initially with "C-c a a". Is there any way to jump from one date to another in a custom agenda view? Or am I trying to achieve something outside the planned use cases for custom agenda views? Thanks, eric