diff options
author | Kyle Meyer <kyle@kyleam.com> | 2014-02-15 15:57:05 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2014-02-15 16:04:55 -0500 |
commit | 289b1399a8791eed9dd58b5364a958db1ee2054e (patch) | |
tree | a90bf91c4d09c5c0a357c397d63063246288eb50 /README | |
parent | 63d671b7c748bbc251b1f39d015aafeef555c05d (diff) | |
download | bog-289b1399a8791eed9dd58b5364a958db1ee2054e.tar.gz |
DOC: Add PDF rename to suggested keybindings
Diffstat (limited to 'README')
-rw-r--r-- | README | 12 |
1 files changed, 7 insertions, 5 deletions
@@ -191,11 +191,12 @@ and taking notes with Org, not on writing research articles with Org. Bog doesn't claim any keybindings, but using "C-c b" as a prefix while in Org mode is a good option. - Key Command - ------------------------------------ - C-c b p bog-find-citekey-pdf - C-c b b bog-find-citekey-bib - C-c b w bog-search-citekey-on-web + Key Command + ------------------------------------------- + C-c b p bog-find-citekey-pdf + C-c b r bog-rename-staged-pdf-to-citekey + C-c b b bog-find-citekey-bib + C-c b w bog-search-citekey-on-web This can be achieved by placing the code below in your .emacs file. @@ -203,6 +204,7 @@ and taking notes with Org, not on writing research articles with Org. | (define-prefix-command 'bog-map) | (define-key org-mode-map (kbd "C-c b") 'bog-map) | (define-key bog-map "p" 'bog-find-citekey-pdf) + | (define-key bog-map "r" 'bog-rename-staged-pdf-to-citekey) | (define-key bog-map "b" 'bog-find-citekey-bib) | (define-key bog-map "w" 'bog-search-citekey-on-web) `---- |