diff options
author | Kyle Meyer <kyle@kyleam.com> | 2015-02-09 01:01:56 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2015-02-09 01:01:56 -0500 |
commit | 81e3fba86d8cb4fa7186afbda7ad59c4287cc6df (patch) | |
tree | cc8d1171b67bc19c223bca5d8473c37d6fac5b43 | |
parent | 6d1a763fea9b835a94c839bd6b7dd5a905ea9579 (diff) | |
download | bog-81e3fba86d8cb4fa7186afbda7ad59c4287cc6df.tar.gz |
Override second org-agenda-redo key in Bog search
Otherwise, 'g' will re-populate the buffer using Org agenda files.
-rw-r--r-- | bog.el | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -884,6 +884,7 @@ Restore the `org-lprops' property value for (use-local-map (let ((map (make-sparse-keymap))) (set-keymap-parent map org-agenda-mode-map) (define-key map "r" 'bog-agenda-redo) + (define-key map "g" 'bog-agenda-redo) map)) (put 'org-agenda-redo-command 'org-lprops org-lprops))) |