diff options
author | Ryan Kavanagh <rak@debian.org> | 2019-08-23 10:57:00 -0400 |
---|---|---|
committer | Ryan Kavanagh <rak@debian.org> | 2019-08-23 10:57:00 -0400 |
commit | 2b664a23b1b4fa4498c6d6094484ed92b2f59869 (patch) | |
tree | 1dabb1afe4ad0587b7a5368be9f465e5935c008e /.emacs | |
parent | bind C-c b to helm-bibtex (diff) |
helm-bibtex bindings in wrong spot
Diffstat (limited to '.emacs')
-rw-r--r-- | .emacs | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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) |