diff options
author | Brent Yorgey <byorgey@gmail.com> | 2007-10-29 16:57:31 +0100 |
---|---|---|
committer | Brent Yorgey <byorgey@gmail.com> | 2007-10-29 16:57:31 +0100 |
commit | 852e3088e05236bd94cb4e3ec15dfffba4b91f62 (patch) | |
tree | 1447430d9cbd31ce39b9820cb5bee22fac321f21 | |
parent | f9c5d4c8b7e9c08792c31e4d7c4040747a8ab015 (diff) | |
download | XMonadContrib-852e3088e05236bd94cb4e3ec15dfffba4b91f62.tar.gz XMonadContrib-852e3088e05236bd94cb4e3ec15dfffba4b91f62.tar.xz XMonadContrib-852e3088e05236bd94cb4e3ec15dfffba4b91f62.zip |
WindowNavigation.hs: documentation fix (navigateBorder -> navigateColor)
darcs-hash:20071029155731-bd4d7-f4c1af84316b773c42bd8556a455f38368e9e66d.gz
-rw-r--r-- | WindowNavigation.hs | 4 |
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) |