aboutsummaryrefslogtreecommitdiffstats
path: root/XMonad/Actions/TagWindows.hs
diff options
context:
space:
mode:
authorAdam Vogt <vogt.adam@gmail.com>2009-10-22 06:11:26 +0200
committerAdam Vogt <vogt.adam@gmail.com>2009-10-22 06:11:26 +0200
commit36728ae60e3effdfe645a9a34cfd2e1067a37516 (patch)
tree153d6eaf1780df2802bb8e5acefac9cbeda4d849 /XMonad/Actions/TagWindows.hs
parent0c9f1ac69bad6af19f3129ec50c4899bac5c149a (diff)
downloadXMonadContrib-36728ae60e3effdfe645a9a34cfd2e1067a37516.tar.gz
XMonadContrib-36728ae60e3effdfe645a9a34cfd2e1067a37516.tar.xz
XMonadContrib-36728ae60e3effdfe645a9a34cfd2e1067a37516.zip
Refer to modm as the current modMask
Ignore-this: d097c7dc1746c55e1d4078a7148f9d5a This makes the config suggestions consistent with the current template. darcs-hash:20091022041126-1499c-5dd63076fdd71a61276cfc8e648bada81d9cc586.gz
Diffstat (limited to 'XMonad/Actions/TagWindows.hs')
-rw-r--r--XMonad/Actions/TagWindows.hs18
1 files changed, 9 insertions, 9 deletions
diff --git a/XMonad/Actions/TagWindows.hs b/XMonad/Actions/TagWindows.hs
index 4eac8ee..fc89bd8 100644
--- a/XMonad/Actions/TagWindows.hs
+++ b/XMonad/Actions/TagWindows.hs
@@ -42,15 +42,15 @@ import XMonad hiding (workspaces)
--
-- and add keybindings such as the following:
--
--- > , ((modMask x, xK_f ), withFocused (addTag "abc"))
--- > , ((modMask x .|. controlMask, xK_f ), withFocused (delTag "abc"))
--- > , ((modMask x .|. shiftMask, xK_f ), withTaggedGlobalP "abc" W.sink)
--- > , ((modMask x, xK_d ), withTaggedP "abc" (W.shiftWin "2"))
--- > , ((modMask x .|. shiftMask, xK_d ), withTaggedGlobalP "abc" shiftHere)
--- > , ((modMask x .|. controlMask, xK_d ), focusUpTaggedGlobal "abc")
--- > , ((modMask x, xK_g ), tagPrompt defaultXPConfig (\s -> withFocused (addTag s)))
--- > , ((modMask x .|. controlMask, xK_g ), tagDelPrompt defaultXPConfig)
--- > , ((modMask x .|. shiftMask, xK_g ), tagPrompt defaultXPConfig (\s -> withTaggedGlobal s float))
+-- > , ((modm, xK_f ), withFocused (addTag "abc"))
+-- > , ((modm .|. controlMask, xK_f ), withFocused (delTag "abc"))
+-- > , ((modm .|. shiftMask, xK_f ), withTaggedGlobalP "abc" W.sink)
+-- > , ((modm, xK_d ), withTaggedP "abc" (W.shiftWin "2"))
+-- > , ((modm .|. shiftMask, xK_d ), withTaggedGlobalP "abc" shiftHere)
+-- > , ((modm .|. controlMask, xK_d ), focusUpTaggedGlobal "abc")
+-- > , ((modm, xK_g ), tagPrompt defaultXPConfig (\s -> withFocused (addTag s)))
+-- > , ((modm .|. controlMask, xK_g ), tagDelPrompt defaultXPConfig)
+-- > , ((modm .|. shiftMask, xK_g ), tagPrompt defaultXPConfig (\s -> withTaggedGlobal s float))
-- > , ((modWinMask, xK_g ), tagPrompt defaultXPConfig (\s -> withTaggedP s (W.shiftWin "2")))
-- > , ((modWinMask .|. shiftMask, xK_g ), tagPrompt defaultXPConfig (\s -> withTaggedGlobalP s shiftHere))
-- > , ((modWinMask .|. controlMask, xK_g ), tagPrompt defaultXPConfig (\s -> focusUpTaggedGlobal s))