diff options
author | Roman Cheplyaka <roma@ro-che.info> | 2009-01-25 00:59:08 +0100 |
---|---|---|
committer | Roman Cheplyaka <roma@ro-che.info> | 2009-01-25 00:59:08 +0100 |
commit | 1ff118f29fe018d867fb2a4793ec5b2cf928c3b1 (patch) | |
tree | da761ae8fa348bb434329a44bb5e636dcbfee69a /XMonad | |
parent | 2c7f685ce4fba8e8e99e3c1acc265e2f2eef76a8 (diff) | |
download | XMonadContrib-1ff118f29fe018d867fb2a4793ec5b2cf928c3b1.tar.gz XMonadContrib-1ff118f29fe018d867fb2a4793ec5b2cf928c3b1.tar.xz XMonadContrib-1ff118f29fe018d867fb2a4793ec5b2cf928c3b1.zip |
X.L.Mosaic: haddock fix
darcs-hash:20090124235908-3ebed-e868d0802cb70f738d018f42366a88e8aab6060a.gz
Diffstat (limited to 'XMonad')
-rw-r--r-- | XMonad/Layout/Mosaic.hs | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/XMonad/Layout/Mosaic.hs b/XMonad/Layout/Mosaic.hs index 46b8fed..b15e0c9 100644 --- a/XMonad/Layout/Mosaic.hs +++ b/XMonad/Layout/Mosaic.hs @@ -15,6 +15,7 @@ ----------------------------------------------------------------------------- module XMonad.Layout.Mosaic ( + -- $usage Mosaic(..) ,Aspect(..) ) @@ -49,10 +50,10 @@ import Data.Monoid(Monoid(mappend, mempty)) -- -- To change the choice in aspect ratio, add to your keybindings: -- --- , ((modMask, xK_a), sendMessage Taller) --- , ((modMask, xK_z), sendMessage Wider) --- , ((modMask, xK_s), sendMessage (SlopeMod (zipWith (*) [1..]))) --- , ((modMask, xK_d), sendMessage (SlopeMod (zipWith (flip (/)) [1..]))) +-- > , ((modMask, xK_a), sendMessage Taller) +-- > , ((modMask, xK_z), sendMessage Wider) +-- > , ((modMask, xK_s), sendMessage (SlopeMod (zipWith (*) [1..]))) +-- > , ((modMask, xK_d), sendMessage (SlopeMod (zipWith (flip (/)) [1..]))) -- -- For more detailed instructions on editing the layoutHook see: -- |