diff options
author | Adam Vogt <vogt.adam@gmail.com> | 2009-03-22 22:55:53 +0100 |
---|---|---|
committer | Adam Vogt <vogt.adam@gmail.com> | 2009-03-22 22:55:53 +0100 |
commit | 105d3b1a23e100623187a9255d958c6dfb3a6f7c (patch) | |
tree | bd50033c8c593ab4672e97410097307a0e1d044f /XMonad | |
parent | 606e8b876ab24bb643cf63c25caa15327b408111 (diff) | |
download | XMonadContrib-105d3b1a23e100623187a9255d958c6dfb3a6f7c.tar.gz XMonadContrib-105d3b1a23e100623187a9255d958c6dfb3a6f7c.tar.xz XMonadContrib-105d3b1a23e100623187a9255d958c6dfb3a6f7c.zip |
Remove excess whitespace in A.UpdatePointer
Ignore-this: 6fbc63642b946461e0fafcb44016824
darcs-hash:20090322215553-1499c-2cff40375400867859ac941b0002f98cadbc245a.gz
Diffstat (limited to 'XMonad')
-rw-r--r-- | XMonad/Actions/UpdatePointer.hs | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/XMonad/Actions/UpdatePointer.hs b/XMonad/Actions/UpdatePointer.hs index d66f1a4..ab1040c 100644 --- a/XMonad/Actions/UpdatePointer.hs +++ b/XMonad/Actions/UpdatePointer.hs @@ -3,7 +3,7 @@ -- Module : XMonadContrib.UpdatePointer -- Copyright : (c) Robert Marlow <robreim@bobturf.org> -- License : BSD3-style (see LICENSE) --- +-- -- Maintainer : Robert Marlow <robreim@bobturf.org> -- Stability : stable -- Portability : portable @@ -14,7 +14,7 @@ -- ----------------------------------------------------------------------------- -module XMonad.Actions.UpdatePointer +module XMonad.Actions.UpdatePointer ( -- * Usage -- $usage @@ -34,9 +34,9 @@ import XMonad.StackSet (member, peek, screenDetail, current) -- > import XMonad.Actions.UpdatePointer -- -- Enable it by including it in your logHook definition. Eg: --- +-- -- > logHook = updatePointer Nearest --- +-- -- which will move the pointer to the nearest point of a newly focused window, or -- -- > logHook = updatePointer (Relative 0.5 0.5) @@ -91,5 +91,4 @@ moveWithin now lower upper = else now fi :: (Num b, Integral a) => a -> b -fi = fromIntegral - +fi = fromIntegral |