diff options
author | Kyle Meyer <kyle@kyleam.com> | 2014-04-30 22:31:33 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2014-04-30 22:41:14 -0400 |
commit | ba516aab5bdb2bd897a59a4c486229318799807c (patch) | |
tree | 3fae4c13eaaf1a31c913da571855005f2fd88fbb | |
parent | b6733efc8daaf1c3b7f45667c209d9776c721958 (diff) | |
download | bog-ba516aab5bdb2bd897a59a4c486229318799807c.tar.gz |
Add bog-refile to the keymap
Steal "w" from `bog-search-citekey-on-web' to be consistent with
`org-refile'.
-rw-r--r-- | bog.el | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -638,11 +638,12 @@ Sorting is only done if the heading's level matches (define-key prefix-map "b" 'bog-find-citekey-bib) (define-key prefix-map "c" 'bog-search-notes-for-citekey) (define-key prefix-map "f" 'bog-find-citekey-file) + (define-key prefix-map "g" 'bog-search-citekey-on-web) (define-key prefix-map "h" 'bog-goto-citekey-heading-in-buffer) (define-key prefix-map "H" 'bog-goto-citekey-heading-in-notes) (define-key prefix-map "r" 'bog-rename-staged-file-to-citekey) (define-key prefix-map "s" 'bog-search-notes) - (define-key prefix-map "w" 'bog-search-citekey-on-web) + (define-key prefix-map "w" 'bog-refile) (define-key map bog-keymap-prefix prefix-map)) map) "Keymap for Bog.") |