From 1768981f90a8953d15f6d48ad483e1357d119e9f Mon Sep 17 00:00:00 2001 From: hughes Date: Sun, 1 Apr 2007 01:51:35 +0000 Subject: [PATCH] Config.hs avoids conflict with essential M-w Emacs shortcut. --- Config.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Config.hs b/Config.hs index e368665..51c6d35 100644 --- a/Config.hs +++ b/Config.hs @@ -95,5 +95,5 @@ keys = M.fromList $ -- Keybindings to each screen: ++ [((m .|. modMask, key), screenWS sc >>= f) - | (key, sc) <- zip [xK_w, xK_e, xK_r] [1..] + | (key, sc) <- zip [xK_e, xK_r, xK_t] [1..] , (f, m) <- [(view, 0), (tag, shiftMask)]]