aboutsummaryrefslogtreecommitdiff
path: root/src/Internal/Keys.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Internal/Keys.hs')
-rw-r--r--src/Internal/Keys.hs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Internal/Keys.hs b/src/Internal/Keys.hs
index a397467..c1d1c70 100644
--- a/src/Internal/Keys.hs
+++ b/src/Internal/Keys.hs
@@ -115,6 +115,9 @@ newKeys =
, ((modm, xK_q), spawn "xmonad --recompile && xmonad --restart")
, ((modm, xK_z), sendMessage ToggleZoom)
+
+ , ((modm, xK_Tab), windows W.focusDown)
+ , ((modm .|. shiftMask, xK_Tab), windows W.focusUp)
]
mapNumbersAndAlpha :: KeyMask -> (Char -> X ()) -> Map (KeyMask, KeySym) (X ())