diff options
-rw-r--r-- | bog.el | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -635,13 +635,13 @@ Sorting is only done if the heading's level matches (defvar bog-mode-map (let ((map (make-sparse-keymap))) (let ((prefix-map (make-sparse-keymap))) - (define-key prefix-map "f" 'bog-find-citekey-file) - (define-key prefix-map "r" 'bog-rename-staged-file-to-citekey) (define-key prefix-map "b" 'bog-find-citekey-bib) - (define-key prefix-map "s" 'bog-search-notes) (define-key prefix-map "c" 'bog-search-notes-for-citekey) + (define-key prefix-map "f" 'bog-find-citekey-file) (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 map bog-keymap-prefix prefix-map)) map) |