From d2b58496126fb654f41d9f2647dd6e1a5a3c8ab3 Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Tue, 12 Jan 2016 12:52:04 +0000 Subject: [PATCH] dot/emacs: Move `C-x w d' to `C-c w d'. Organization: Straylight/Edgeware From: Mark Wooding This was missed in d015d85... for some reason. This makes room for `hi-lock-mode''s `C-x w ...' commands, which look useful. The other bindings aren't currently used (Emacs 23) but may be in the future, so it seems like a good idea. --- dot/emacs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dot/emacs b/dot/emacs index c0257de..54072f1 100644 --- a/dot/emacs +++ b/dot/emacs @@ -542,7 +542,7 @@ (global-set-key [?\C-x ?3] 'mdw-split-window-horizontally) (global-set-key [?\M-#] 'calc-dispatch) (global-set-key [?\C-x ?/] 'auto-fill-mode) - (global-set-key [?\C-x ?w ?d] 'mdw-divvy-window) + (global-set-key [?\C-c ?w ?d] 'mdw-divvy-window) (global-set-key [insertchar] 'overwrite-mode) (global-set-key [?\C-x ?\C-n] 'skel-create-file) (global-set-key [?\C-x ?4 ?n] 'skel-create-file-other-window) -- [mdw]