summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2025-09-02 22:47:29 -0500
committerCraig Jennings <c@cjennings.net>2025-09-02 22:47:29 -0500
commit15f70bab3201f60f32dac64373dbb4353560d2db (patch)
tree2350d64810acf8d7d57c50474cf143906bc36a6c /modules
parent728724fa76114e5b2d1fcf648eb65cc9b4d20f96 (diff)
downloaddotemacs-15f70bab3201f60f32dac64373dbb4353560d2db.tar.gz
dotemacs-15f70bab3201f60f32dac64373dbb4353560d2db.zip
correcting reading notes file and jump to
Diffstat (limited to 'modules')
-rw-r--r--modules/keybindings.el5
-rw-r--r--modules/user-constants.el2
2 files changed, 4 insertions, 3 deletions
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 ------------------------