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 | 68d0c1c9f5d0fc4fa0be61eda3dc132b0cdf3606 (patch) | |
tree | 961ab58d1e2afb3a6e268fce689ba16d1294441d /XMonad | |
parent | 462f2e26f9f1dde08c82f15c51d8e948ef9ea688 (diff) | |
download | xmonad-68d0c1c9f5d0fc4fa0be61eda3dc132b0cdf3606.tar.gz xmonad-68d0c1c9f5d0fc4fa0be61eda3dc132b0cdf3606.tar.xz xmonad-68d0c1c9f5d0fc4fa0be61eda3dc132b0cdf3606.zip |
add mod-shift-tab to the default bindings, from Mathias Stearn
darcs-hash:20080323211421-cba2c-46aba254af16f1bf3cb269bc84f289882010b93f.gz
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 |