aboutsummaryrefslogtreecommitdiffstats
path: root/XMonad/Actions/CopyWindow.hs
diff options
context:
space:
mode:
authorBrent Yorgey <byorgey@gmail.com>2007-11-24 03:26:35 +0100
committerBrent Yorgey <byorgey@gmail.com>2007-11-24 03:26:35 +0100
commiteb322f0b8993fea56dd05124155ff1773fe5103b (patch)
tree1d9b2c81dba90e464a3ed3fdf9cc79afda1bc14f /XMonad/Actions/CopyWindow.hs
parent17f297a62ce0ce391fc7ca883bec4c4bb7a676de (diff)
downloadXMonadContrib-eb322f0b8993fea56dd05124155ff1773fe5103b.tar.gz
XMonadContrib-eb322f0b8993fea56dd05124155ff1773fe5103b.tar.xz
XMonadContrib-eb322f0b8993fea56dd05124155ff1773fe5103b.zip
Haddock docs: modMask --> modMask x
darcs-hash:20071124022635-bd4d7-16491e97f6ddf5d1a467379296696d6b26bd2721.gz
Diffstat (limited to 'XMonad/Actions/CopyWindow.hs')
-rw-r--r--XMonad/Actions/CopyWindow.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/XMonad/Actions/CopyWindow.hs b/XMonad/Actions/CopyWindow.hs
index f603415..17b5821 100644
--- a/XMonad/Actions/CopyWindow.hs
+++ b/XMonad/Actions/CopyWindow.hs
@@ -39,14 +39,14 @@ import XMonad.StackSet
-- > -- mod-[1..9] @@ Switch to workspace N
-- > -- mod-shift-[1..9] @@ Move client to workspace N
-- > -- mod-control-shift-[1..9] @@ Copy client to workspace N
--- > [((m .|. modMask, k), f i)
+-- > [((m .|. modMask x, k), f i)
-- > | (i, k) <- zip workspaces [xK_1 ..]
-- > , (f, m) <- [(view, 0), (shift, shiftMask), (copy, shiftMask .|. controlMask)]]
--
-- You may also wish to redefine the binding to kill a window so it only
-- removes it from the current workspace, if it's present elsewhere:
--
--- > , ((modMask .|. shiftMask, xK_c ), kill1) -- @@ Close the focused window
+-- > , ((modMask x .|. shiftMask, xK_c ), kill1) -- @@ Close the focused window
--
-- For detailed instructions on editing your key bindings, see
-- "XMonad.Doc.Extending#Editing_key_bindings".