diff options
author | Kyle Meyer <kyle@kyleam.com> | 2016-06-29 20:39:14 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2016-06-29 20:39:14 -0400 |
commit | 1f34790117031ff61fcc87800241210528dd844c (patch) | |
tree | 8fde2f715661d0e5492b0f7fe56cfc6191b43de3 | |
parent | 6c1a913818b3be52ad96c32ee08e3f7dc2f43b6f (diff) | |
download | emacs.d-1f34790117031ff61fcc87800241210528dd844c.tar.gz |
Re-order some bindings
-rw-r--r-- | init.el | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -2012,11 +2012,11 @@ ("o" . km/ace-link-widget))) (bind-keys :map km/gnus-summary-prefix-map - ("p" . km/gnus-open-github-patch) - ("l" . km/gnus-copy-gmane-link-as-kill)) + ("l" . km/gnus-copy-gmane-link-as-kill) + ("p" . km/gnus-open-github-patch)) (bind-keys :map km/gnus-article-prefix-map - ("p" . km/gnus-open-github-patch) - ("l" . km/gnus-copy-gmane-link-as-kill))) + ("l" . km/gnus-copy-gmane-link-as-kill) + ("p" . km/gnus-open-github-patch))) ;;; Miscellaneous configuration |