aboutsummaryrefslogtreecommitdiff
path: root/.emacs
diff options
context:
space:
mode:
authorRyan Kavanagh <rak@debian.org>2019-08-23 10:57:00 -0400
committerRyan Kavanagh <rak@debian.org>2019-08-23 10:57:00 -0400
commit2b664a23b1b4fa4498c6d6094484ed92b2f59869 (patch)
tree1dabb1afe4ad0587b7a5368be9f465e5935c008e /.emacs
parentbind C-c b to helm-bibtex (diff)
helm-bibtex bindings in wrong spot
Diffstat (limited to '.emacs')
-rw-r--r--.emacs6
1 files changed, 3 insertions, 3 deletions
diff --git a/.emacs b/.emacs
index 36d8e25..4ecc327 100644
--- a/.emacs
+++ b/.emacs
@@ -176,7 +176,8 @@ Extended Format date in the date field and return it as a string obeing
(bibtex-completion-bibliography "~/Documents/papers/library.bib")
(bibtex-completion-library-path "~/Documents/papers/pdfs/")
(bibtex-completion-notes-path "~/Documents/papers/notes/")
- (bibtex-completion-notes-extension ".org"))
+ (bibtex-completion-notes-extension ".org")
+ :bind (("C-c b" . helm-bibtex)))
(use-package cc-mode
:custom
@@ -501,8 +502,7 @@ Otherwise split the current paragraph into one sentence per line."
(lambda (thekey)
(let ((bibtex-completion-bibliography (org-ref-find-bibliography)))
(bibtex-completion-edit-notes
- (list (car (org-ref-get-bibtex-key-and-file thekey)))))))
- :bind (("C-c b" . helm-bibtex)))
+ (list (car (org-ref-get-bibtex-key-and-file thekey))))))))
(use-package org-ref-arxiv
:ensure org-ref)