Refer to modm as the current modMask

This makes the config suggestions consistent with the current template.
This commit is contained in:
Adam Vogt
2009-10-22 04:11:26 +00:00
parent 9f16a427e6
commit 74a03cd8fb
79 changed files with 248 additions and 246 deletions

View File

@@ -136,15 +136,15 @@ import XMonad.Util.StringProp(getStringListProp,setStringListProp)
--
-- @
-- -- extend your keybindings
-- myKeys =
-- [ ((modMask , xK_n ), spawnShell) -- %! Launch terminal
-- , ((modMask , xK_a ), currentTopicAction myTopicConfig)
-- , ((modMask , xK_g ), promptedGoto)
-- , ((modMask .|. shiftMask, xK_g ), promptedShift)
-- myKeys conf\@XConfig{modMask=modm} =
-- [ ((modm , xK_n ), spawnShell) -- %! Launch terminal
-- , ((modm , xK_a ), currentTopicAction myTopicConfig)
-- , ((modm , xK_g ), promptedGoto)
-- , ((modm .|. shiftMask, xK_g ), promptedShift)
-- ...
-- ]
-- ++
-- [ ((modMask, k), switchNthLastFocused myTopicConfig i)
-- [ ((modm, k), switchNthLastFocused myTopicConfig i)
-- | (i, k) <- zip [1..] workspaceKeys]
-- @
--