diff options
author | Kyle Meyer <kyle@kyleam.com> | 2014-04-15 23:11:47 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2014-04-15 23:11:47 -0400 |
commit | 3db6325e04a4607b4c34f8dd695b36734ec81798 (patch) | |
tree | cc465977b98eb8ad6ea0e9aa4f7358d7c42572f7 | |
parent | 6aaa4a2193f3be9732b593c752ac21bfc0d9f03c (diff) | |
download | emacs.d-3db6325e04a4607b4c34f8dd695b36734ec81798.tar.gz |
Change org-refile-to-other* bindings
Make consistent with `org-refile'.
-rw-r--r-- | lisp/init-org.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/init-org.el b/lisp/init-org.el index 4785590..af5361c 100644 --- a/lisp/init-org.el +++ b/lisp/init-org.el @@ -231,9 +231,9 @@ MAXLEVEL (defaults to 2)." (eval-after-load 'org '(add-to-list 'org-mode-hook '(lambda () - (local-set-key (kbd "C-c m r") + (local-set-key (kbd "C-c m w") 'km/org-refile-to-other-org-buffer) - (local-set-key (kbd "C-c m R") + (local-set-key (kbd "C-c m W") 'km/org-refile-to-other-file) (local-set-key (kbd "C-c m o") 'ace-link-org)))) |