diff options
author | Adam Vogt <vogt.adam@gmail.com> | 2015-04-24 03:22:09 +0200 |
---|---|---|
committer | Adam Vogt <vogt.adam@gmail.com> | 2015-04-24 03:22:09 +0200 |
commit | 7a1ee5feeb06d304809f6296751370abf4982230 (patch) | |
tree | bcb920f45c6680e1860df3803be0c06701a58958 | |
parent | 39517ea69559c7606493de1c05525c8f0bdf7ea9 (diff) | |
download | XMonadContrib-7a1ee5feeb06d304809f6296751370abf4982230.tar.gz XMonadContrib-7a1ee5feeb06d304809f6296751370abf4982230.tar.xz XMonadContrib-7a1ee5feeb06d304809f6296751370abf4982230.zip |
make X.A.Plane example config actually compile
Ignore-this: a30341a0b1a6a48929aeef43fa4689e3
darcs-hash:20150424012209-1499c-ae55348b537d5e647090da87be34e271c84f9fa4.gz
Diffstat (limited to '')
-rw-r--r-- | XMonad/Actions/Plane.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/XMonad/Actions/Plane.hs b/XMonad/Actions/Plane.hs index fee41bc..46684bf 100644 --- a/XMonad/Actions/Plane.hs +++ b/XMonad/Actions/Plane.hs @@ -51,12 +51,13 @@ import XMonad.Util.Run -- You can use this module with the following in your @~\/.xmonad\/xmonad.hs@ file: -- -- > import XMonad.Actions.Plane +-- > import Data.Map (union) -- > -- > main = xmonad def {keys = myKeys} -- > -- > 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 -- "XMonad.Doc.Extending#Editing_key_bindings". |