aboutsummaryrefslogtreecommitdiffstats
path: root/XMonad/Layout/LayoutCombinators.hs
diff options
context:
space:
mode:
authorDaniel Wagner <daniel@wagner-home.com>2010-10-07 03:19:57 +0200
committerDaniel Wagner <daniel@wagner-home.com>2010-10-07 03:19:57 +0200
commite894a806defd56ed07c40ebd1292b847b64ee4be (patch)
tree942ea47882a983c9ee062721e32efb5ae5bc65b3 /XMonad/Layout/LayoutCombinators.hs
parent55c005c2843c396f9a434ca2b77cfe04791f5da1 (diff)
downloadXMonadContrib-e894a806defd56ed07c40ebd1292b847b64ee4be.tar.gz
XMonadContrib-e894a806defd56ed07c40ebd1292b847b64ee4be.tar.xz
XMonadContrib-e894a806defd56ed07c40ebd1292b847b64ee4be.zip
minor documentation fixes
Ignore-this: c5c046933f318f5a14f063ca387601b9 darcs-hash:20101007011957-76d51-ab28ea5c58b183de7dd35833b2e5bdb25411900a.gz
Diffstat (limited to 'XMonad/Layout/LayoutCombinators.hs')
-rw-r--r--XMonad/Layout/LayoutCombinators.hs10
1 files changed, 9 insertions, 1 deletions
diff --git a/XMonad/Layout/LayoutCombinators.hs b/XMonad/Layout/LayoutCombinators.hs
index 79fe0bf..6d443cd 100644
--- a/XMonad/Layout/LayoutCombinators.hs
+++ b/XMonad/Layout/LayoutCombinators.hs
@@ -76,6 +76,7 @@ import XMonad.Layout.DragPane
-- > import XMonad hiding ( (|||) )
-- > import XMonad.Layout.LayoutCombinators
--
+-- If you import XMonad.Layout, you will need to hide it from there as well.
-- Then bind some keys to a 'JumpToLayout' message:
--
-- > , ((modm .|. controlMask, xK_f), sendMessage $ JumpToLayout "Full") -- jump directly to the Full layout
@@ -179,9 +180,16 @@ infixr 5 |||
-- The standard xmonad core exports a layout combinator @|||@ which
-- represents layout choice. This is a reimplementation which also
-- provides the capability to support 'JumpToLayout' messages. To use
--- it, be sure to hide the import of @|||@ from the xmonad core:
+-- it, be sure to hide the import of @|||@ from the xmonad core; if either of
+-- these two lines appear in your configuration:
+--
+-- > import XMonad
+-- > import XMonad.Layout
+--
+-- replace them with these instead, respectively:
--
-- > import XMonad hiding ( (|||) )
+-- > import XMonad.Layout hiding ( (|||) )
--
-- The argument given to a 'JumpToLayout' message should be the
-- @description@ of the layout to be selected. If you use