diff options
author | Devin Mullins <devin.mullins@gmail.com> | 2014-10-02 09:59:39 +0200 |
---|---|---|
committer | Devin Mullins <devin.mullins@gmail.com> | 2014-10-02 09:59:39 +0200 |
commit | 8d717e6c954cbf0ed1ea5c50b40b1c1ea3a012e0 (patch) | |
tree | ab2ad6a4b3b14a10eafc94056dc6d73eb39640ad | |
parent | b197cc882b69adbfc7756f8fdfa22fc6ecc7aa2a (diff) | |
download | XMonadContrib-8d717e6c954cbf0ed1ea5c50b40b1c1ea3a012e0.tar.gz XMonadContrib-8d717e6c954cbf0ed1ea5c50b40b1c1ea3a012e0.tar.xz XMonadContrib-8d717e6c954cbf0ed1ea5c50b40b1c1ea3a012e0.zip |
X.C.Prime: doc tweaks
Ignore-this: 20d6b829b810f48b5e4b4c161b39b312
darcs-hash:20141002075939-541df-8de85c44bff7b35e29159243b6bc7715865d7ecb.gz
-rw-r--r-- | XMonad/Config/Prime.hs | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/XMonad/Config/Prime.hs b/XMonad/Config/Prime.hs index c9b2f09..e7b7d7f 100644 --- a/XMonad/Config/Prime.hs +++ b/XMonad/Config/Prime.hs @@ -3,10 +3,10 @@ ----------------------------------------------------------------------------- -- | -- Module : XMonad.Config.Prime --- Copyright : Devin Mullins <devinmullins@gmail.com> +-- Copyright : Devin Mullins <devin.mullins@gmail.com> -- License : BSD-style (see LICENSE) -- --- Maintainer : Devin Mullins <devinmullins@gmail.com> +-- Maintainer : Devin Mullins <devin.mullins@gmail.com> -- 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: -- |