Add global bibliography file shortcut
This commit is contained in:
parent
0d72295e89
commit
6aa73c5371
|
@ -51,6 +51,15 @@
|
||||||
(find-file org-directory))
|
(find-file org-directory))
|
||||||
(keymap-global-set "C-c w o" #'my/open-org-directory)
|
(keymap-global-set "C-c w o" #'my/open-org-directory)
|
||||||
#+end_src
|
#+end_src
|
||||||
|
** Default bibliography file
|
||||||
|
#+begin_src emacs-lisp
|
||||||
|
(defun my/open-global-bibliography ()
|
||||||
|
"Open `org-cite-global-bibliography'."
|
||||||
|
(interactive)
|
||||||
|
(require 'org)
|
||||||
|
(find-file (car org-cite-global-bibliography)))
|
||||||
|
(keymap-global-set "C-c w b" #'my/open-global-bibliography)
|
||||||
|
#+end_src
|
||||||
** RSS feeds file
|
** RSS feeds file
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
;; Elfeed feeds file shortcut
|
;; Elfeed feeds file shortcut
|
||||||
|
|
Loading…
Reference in a new issue