diff options
author | Brent Yorgey <byorgey@gmail.com> | 2008-03-24 15:32:14 +0100 |
---|---|---|
committer | Brent Yorgey <byorgey@gmail.com> | 2008-03-24 15:32:14 +0100 |
commit | 8891f095f65e7290240cd14e34c92921907ce287 (patch) | |
tree | 893b88c8004dd8e6d34d201728e684afa132a818 /XMonad/Layout | |
parent | cae1163272b68d44bccbb12fd06ee9baf965a9b2 (diff) | |
download | XMonadContrib-8891f095f65e7290240cd14e34c92921907ce287.tar.gz XMonadContrib-8891f095f65e7290240cd14e34c92921907ce287.tar.xz XMonadContrib-8891f095f65e7290240cd14e34c92921907ce287.zip |
XMonad.Layout.Magnifier: add documentation
darcs-hash:20080324143214-bd4d7-c2d080bc7a38dd119085c098cc523989a9b43187.gz
Diffstat (limited to 'XMonad/Layout')
-rw-r--r-- | XMonad/Layout/Magnifier.hs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/XMonad/Layout/Magnifier.hs b/XMonad/Layout/Magnifier.hs index ef959ec..c2f9033 100644 --- a/XMonad/Layout/Magnifier.hs +++ b/XMonad/Layout/Magnifier.hs @@ -62,6 +62,18 @@ import XMonad.Layout.LayoutModifier -- > , ((modMask x .|. controlMask , xK_minus), sendMessage MagnifyLess) -- > , ((modMask x .|. controlMask , xK_o ), sendMessage ToggleOff ) -- > , ((modMask x .|. controlMask .|. shiftMask, xK_o ), sendMessage ToggleOn ) +-- > , ((modMask x .|. controlMask , xK_m ), sendMessage Toggle ) +-- +-- Note that a few other extension modules, such as +-- "XMonad.Layout.MultiToggle" and "XMonad.Layout.ToggleLayouts", also +-- define a message named 'Toggle'. To avoid conflicts when using +-- these modules together, you can import Magnifier qualified, like +-- this: +-- +-- > import qualified XMonad.Layout.Magnifier as Mag +-- +-- and then prefix @Mag@ to the front of everything from this module, +-- like @Mag.Toggle@, @Mag.magnifier@, and so on. -- -- For detailed instruction on editing the key binding see -- "XMonad.Doc.Extending#Editing_key_bindings". |