aboutsummaryrefslogtreecommitdiffstats
path: root/WindowNavigation.hs
diff options
context:
space:
mode:
authorBrent Yorgey <byorgey@gmail.com>2007-10-29 16:57:31 +0100
committerBrent Yorgey <byorgey@gmail.com>2007-10-29 16:57:31 +0100
commit852e3088e05236bd94cb4e3ec15dfffba4b91f62 (patch)
tree1447430d9cbd31ce39b9820cb5bee22fac321f21 /WindowNavigation.hs
parentf9c5d4c8b7e9c08792c31e4d7c4040747a8ab015 (diff)
downloadXMonadContrib-852e3088e05236bd94cb4e3ec15dfffba4b91f62.tar.gz
XMonadContrib-852e3088e05236bd94cb4e3ec15dfffba4b91f62.tar.xz
XMonadContrib-852e3088e05236bd94cb4e3ec15dfffba4b91f62.zip
WindowNavigation.hs: documentation fix (navigateBorder -> navigateColor)
darcs-hash:20071029155731-bd4d7-f4c1af84316b773c42bd8556a455f38368e9e66d.gz
Diffstat (limited to 'WindowNavigation.hs')
-rw-r--r--WindowNavigation.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/WindowNavigation.hs b/WindowNavigation.hs
index e66e2bd..c846b18 100644
--- a/WindowNavigation.hs
+++ b/WindowNavigation.hs
@@ -45,7 +45,7 @@ import XMonadContrib.XUtils
--
-- or perhaps
--
--- > layoutHook = Layout $ configurableNavigation (navigateBorder "green") $ Select ...
+-- > layoutHook = Layout $ configurableNavigation (navigateColor "green") $ Select ...
--
-- In keybindings:
--
@@ -67,7 +67,7 @@ import XMonadContrib.XUtils
-- %layout -- just before the list, like the following (don't uncomment next line):
-- %layout -- layoutHook = Layout $ windowNavigation $ ...
-- %layout -- or
--- %layout -- layoutHook = Layout $ configurableNavigation (navigateBorder "green") $ ...
+-- %layout -- layoutHook = Layout $ configurableNavigation (navigateColor "green") $ ...
data MoveWindowToWindow a = MoveWindowToWindow a a deriving ( Read, Show, Typeable )
instance Typeable a => Message (MoveWindowToWindow a)