diff --git a/XMonad/Config/Prime.hs b/XMonad/Config/Prime.hs index c9b2f09c..e7b7d7f3 100644 --- a/XMonad/Config/Prime.hs +++ b/XMonad/Config/Prime.hs @@ -3,10 +3,10 @@ ----------------------------------------------------------------------------- -- | -- Module : XMonad.Config.Prime --- Copyright : Devin Mullins +-- Copyright : Devin Mullins -- License : BSD-style (see LICENSE) -- --- Maintainer : Devin Mullins +-- Maintainer : Devin Mullins -- Stability : unstable -- Portability : unportable -- @@ -142,6 +142,9 @@ import XMonad.Util.EZConfig (additionalKeysP, additionalMouseBindings, checkKeym -- your do-block start at the same column, and make sure that any multi-line -- statements are formatted with a hanging indent. (For an example, see the -- 'keys =+' statement in the /Example config/ section, below.) +-- +-- After changing your config file, restart xmonad with mod-q (where, by +-- default, "mod" == "alt"). -- -- The Prime "Monad" @@ -458,9 +461,9 @@ wsKeys = Summable wsKeys_ (\x c -> c { wsKeys_ = x }) (++) -- | Mapping from key prefix to command. Its type is @[(String, String -> -- X())]@. The key prefix may be a modifier such as @\"M-\"@, or a submap --- prefix such as @\"M-a \"@. The command is a function that takes a workspace --- name and returns an @X ()@. 'withWorkspaces' creates keybindings for the --- cartesian product of 'wsKeys' and 'wsActions'. +-- prefix such as @\"M-a \"@, or both, as in @\"M-a M-\"@. The command is a +-- function that takes a workspace name and returns an @X ()@. 'withWorkspaces' +-- creates keybindings for the cartesian product of 'wsKeys' and 'wsActions'. -- -- Default: --