summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2025-05-23 15:08:05 -0500
committerCraig Jennings <c@cjennings.net>2025-05-23 15:08:05 -0500
commit16588181737d6547574f7b69faf5136ec12b204c (patch)
tree47e9a261cd93a08daf60476e0ab4001071b9fdef /modules
parent271acf16ae0beabb39d2d03e85ee9a2049ee7203 (diff)
downloaddotemacs-16588181737d6547574f7b69faf5136ec12b204c.tar.gz
dotemacs-16588181737d6547574f7b69faf5136ec12b204c.zip
add jump to keybinding for reference.org
Diffstat (limited to 'modules')
-rw-r--r--modules/keybindings.el12
-rw-r--r--modules/user-constants.el3
2 files changed, 9 insertions, 6 deletions
diff --git a/modules/keybindings.el b/modules/keybindings.el
index 4de768f03..1212ea514 100644
--- a/modules/keybindings.el
+++ b/modules/keybindings.el
@@ -41,10 +41,10 @@
^Applications^ ^Communication^ ^Utilities^ ^Entertainment
^^^^^^^^--------------------------------------------------------------------------------
_f_: Feed Reader _m_: Mu4e Email _p_: Open Project _r_: Play Radio
- _b_: Ebook Manager _t_: Telegram _c_: Calculator _g_: Games Menu
- _F_: File Manager _i_: IRC _W_: World Clock
- _l_: Ledger Accounting ^^ _z_: Diff Directories
- _d_: Flashcard Drill ^^ ^^
+ _b_: Ebook Manager _i_: IRC _c_: Calculator _g_: Games Menu
+ _F_: File Manager ^^ _W_: World Clock
+ _d_: Flashcard Drill ^^ _z_: Diff Directories
+ ^^ ^^
^^ ^^ ^^ _q_: quit
\n\n
"
@@ -53,12 +53,10 @@
("f" elfeed-dashboard)
("b" calibredb)
("F" (dirvish user-home-dir))
- ("l" (find-file ledger-file))
("d" cj/drill-start)
;; Communication
("m" mu4e)
- ("t" telega)
("i" cj/erc-start-or-switch)
;; Utilities
@@ -81,6 +79,8 @@
"Jump-to commonly used files/directories/commands.")
(global-set-key (kbd "C-c j") jump-to-keymap)
+(define-key jump-to-keymap (kbd "r")
+ #'(lambda () (interactive) (find-file reference-file)))
(define-key jump-to-keymap (kbd "s")
#'(lambda () (interactive) (find-file schedule-file)))
(define-key jump-to-keymap (kbd "i")
diff --git a/modules/user-constants.el b/modules/user-constants.el
index 11872474a..835b5b410 100644
--- a/modules/user-constants.el
+++ b/modules/user-constants.el
@@ -69,6 +69,9 @@
(defvar contacts-file (concat sync-dir "contacts.org")
"The location of the org file containing org-contacts information.")
+(defvar reference-file (concat sync-dir "reference.org")
+ "The location of the org file containing reference information.")
+
(defvar article-file (concat sync-dir "article-inbox.org")
"The location of the org file containing new clipped pages to review.")