From c3ee31b9820d8466267a73ab1ad652e043e31314 Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Tue, 31 May 2016 18:30:34 +0100 Subject: [PATCH] dot/emacs: Move `hippie-expand' to another (related) key. Organization: Straylight/Edgeware From: Mark Wooding This leaves `dabbrev-expand' where it usually is, reducing confusion between full-on and fast-startup Emacsen. --- dot/emacs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dot/emacs b/dot/emacs index f3131a9..5781453 100644 --- a/dot/emacs +++ b/dot/emacs @@ -616,7 +616,7 @@ (global-set-key [?\C-c ?d ?a] 'devhelp-assistant-word-at-point) (global-set-key [f11] 'mdw-toggle-full-screen) (and (not mdw-fast-startup) (fboundp 'hippie-expand) - (global-set-key [?\M-/] 'hippie-expand))) + (global-set-key [?\M-?] 'hippie-expand))) (eval-after-load "dired" '(progn -- [mdw]