From 15f70bab3201f60f32dac64373dbb4353560d2db Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Tue, 2 Sep 2025 22:47:29 -0500 Subject: correcting reading notes file and jump to --- modules/keybindings.el | 5 +++-- modules/user-constants.el | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) (limited to 'modules') diff --git a/modules/keybindings.el b/modules/keybindings.el index 288ba7e2..ccfd83cb 100644 --- a/modules/keybindings.el +++ b/modules/keybindings.el @@ -21,7 +21,6 @@ ;; is undefined' message. Finally, I'm providing messages to train me to use ;; faster keybindings and provide feedback when evaluating buffers. - ;;; Code: @@ -101,7 +100,9 @@ (define-key jump-to-keymap (kbd "$") #'(lambda () (interactive) (find-file ledger-file))) (define-key jump-to-keymap (kbd "m") - #'(lambda () (interactive) (find-file macros-file))) + #'(lambda () (interactive) (find-file macros-file))) +(define-key jump-to-keymap (kbd "n") + #'(lambda () (interactive) (find-file reading-notes-file))) (define-key jump-to-keymap (kbd "I") #'(lambda () (interactive) (find-file emacs-init-file))) diff --git a/modules/user-constants.el b/modules/user-constants.el index e71a5ae9..a00a293e 100644 --- a/modules/user-constants.el +++ b/modules/user-constants.el @@ -75,7 +75,7 @@ (defvar inbox-file (concat roam-dir "inbox.org") "The location of the org file that serves as the task inbox.") ; -(defvar reading-notes-file (concat roam-dir "reading-notes.org") +(defvar reading-notes-file (concat roam-dir "20250830141440-reading_notes.org") "The default notes file for org-noter.") ;; ------------------------- Verify Or Create Functions ------------------------ -- cgit v1.2.3