diff options
-rw-r--r-- | XMonad/Doc/Extending.hs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/XMonad/Doc/Extending.hs b/XMonad/Doc/Extending.hs index bc250cb..3b18c5b 100644 --- a/XMonad/Doc/Extending.hs +++ b/XMonad/Doc/Extending.hs @@ -439,6 +439,12 @@ appropriate 'Data.Map.Map' from a list of key bindings using needs to be joined to a 'Data.Map.Map' of existing bindings using 'Data.Map.union'. +Since we are going to need functions from the "Data.Map" module, it +must be imported first: + +> import qualified Data.Map as M + + For instance, if you have defined some additional key bindings like these: |