make X.A.Plane example config actually compile

This commit is contained in:
Adam Vogt 2015-04-24 01:22:09 +00:00
parent 08beff45b9
commit 0d061462c7

View File

@ -51,12 +51,13 @@ import XMonad.Util.Run
-- You can use this module with the following in your @~\/.xmonad\/xmonad.hs@ file: -- You can use this module with the following in your @~\/.xmonad\/xmonad.hs@ file:
-- --
-- > import XMonad.Actions.Plane -- > import XMonad.Actions.Plane
-- > import Data.Map (union)
-- > -- >
-- > main = xmonad def {keys = myKeys} -- > main = xmonad def {keys = myKeys}
-- > -- >
-- > myKeys conf = union (keys def conf) $ myNewKeys conf -- > myKeys conf = union (keys def conf) $ myNewKeys conf
-- > -- >
-- > myNewkeys (XConfig {modMask = modm}) = planeKeys modm (Lines 3) Finite -- > myNewKeys (XConfig {modMask = modm}) = planeKeys modm (Lines 3) Finite
-- --
-- For detailed instructions on editing your key bindings, see -- For detailed instructions on editing your key bindings, see
-- "XMonad.Doc.Extending#Editing_key_bindings". -- "XMonad.Doc.Extending#Editing_key_bindings".