diff options
author | Daniel Schoepe <daniel.schoepe@gmail.com> | 2009-08-23 15:12:29 +0200 |
---|---|---|
committer | Daniel Schoepe <daniel.schoepe@gmail.com> | 2009-08-23 15:12:29 +0200 |
commit | 34d6544fc247f12bb0cda0cc5da27a37d2d4b4bd (patch) | |
tree | e7fbee9f640c3b29f8f1fc591e32acffbb3e6d76 | |
parent | bc953a7e66fad3430db8be04916015f845bab79a (diff) | |
download | XMonadContrib-34d6544fc247f12bb0cda0cc5da27a37d2d4b4bd.tar.gz XMonadContrib-34d6544fc247f12bb0cda0cc5da27a37d2d4b4bd.tar.xz XMonadContrib-34d6544fc247f12bb0cda0cc5da27a37d2d4b4bd.zip |
Improve/correct documentation in X.A.TagWindows
Ignore-this: e9adb7bf77eeebff42f564390c6ceedc
darcs-hash:20090823131229-7f603-1f0d7b59948bd8b47215c1325e158c19807fb203.gz
-rw-r--r-- | XMonad/Actions/TagWindows.hs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/XMonad/Actions/TagWindows.hs b/XMonad/Actions/TagWindows.hs index 01ea1d8..4eac8ee 100644 --- a/XMonad/Actions/TagWindows.hs +++ b/XMonad/Actions/TagWindows.hs @@ -44,14 +44,14 @@ import XMonad hiding (workspaces) -- -- > , ((modMask x, xK_f ), withFocused (addTag "abc")) -- > , ((modMask x .|. controlMask, xK_f ), withFocused (delTag "abc")) --- > , ((modMask x .|. shiftMask, xK_f ), withTaggedGlobal "abc" sink) --- > , ((modMask x, xK_d ), withTaggedP "abc" (shiftWin "2")) +-- > , ((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)) --- > , ((modWinMask, xK_g ), tagPrompt defaultXPConfig (\s -> withTaggedP s (shiftWin "2"))) +-- > , ((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)) -- |