Hi everyone,
I would like to create a function that works a bit like text-scale-adjust (C-x C-0). In text-scale-adjust you enter some kind of “mode” where you can press “+” or “-” to adjust the text as many times as you want, until you leave this mode.
I want this kind of behaviour but instead, I want to move through my existing daily notes. I find that I am using “C-c n d f” and “C-c n d b” a lot to move through them, which is exhausting, and I’m trying to find an easier method. I’m guessing it will be using org-roam-dailies-goto-next-note and org-roam-dailies-goto-previous-note. I have looked through the code for text-scale-adjust to try to replicate it but I do not yet understand elisp enough to find how it makes this kind of behaviour work.
So, in practice, it would look like this:
- M-x move-through-daily-notes
- echo area reads something like “press n for next daily note, press p for previous daily note”
- n: call org-roam-dailies-goto-next-note function
- p: call org-roam-dailies-goto-previous-note function
- press any other button to exit mode
Thanks in advance!