add mod-shift-tab to the default bindings, from Mathias Stearn

This commit is contained in:
Don Stewart 2008-03-23 21:14:21 +00:00
parent 9fd1d4f9d0
commit 029965e4d4

View File

@ -194,6 +194,7 @@ keys conf@(XConfig {XMonad.modMask = modMask}) = M.fromList $
-- move focus up or down the window stack
, ((modMask, xK_Tab ), windows W.focusDown) -- %! Move focus to the next window
, ((modMask .|. shiftMask, xK_Tab ), windows W.focusUp ) -- %! Move focus to the previous window
, ((modMask, xK_j ), windows W.focusDown) -- %! Move focus to the next window
, ((modMask, xK_k ), windows W.focusUp ) -- %! Move focus to the previous window
, ((modMask, xK_m ), windows W.focusMaster ) -- %! Move focus to the master window