diff options
author | Don Stewart <dons@galois.com> | 2008-03-23 22:14:21 +0100 |
---|---|---|
committer | Don Stewart <dons@galois.com> | 2008-03-23 22:14:21 +0100 |
commit | 0ecf25a244ca62fe5a0120044690e2fdced0d76a (patch) | |
tree | 961ab58d1e2afb3a6e268fce689ba16d1294441d /XMonad | |
parent | 98b329e0cad36b6b622cec9d4e165051f99c4cd8 (diff) | |
download | metatile-0ecf25a244ca62fe5a0120044690e2fdced0d76a.tar metatile-0ecf25a244ca62fe5a0120044690e2fdced0d76a.zip |
add mod-shift-tab to the default bindings, from Mathias Stearn
darcs-hash:20080323211421-cba2c-46aba254af16f1bf3cb269bc84f289882010b93f
Diffstat (limited to 'XMonad')
-rw-r--r-- | XMonad/Config.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/XMonad/Config.hs b/XMonad/Config.hs index 98ec02a..7b78b00 100644 --- a/XMonad/Config.hs +++ b/XMonad/Config.hs @@ -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 |