mirror of
https://github.com/xmonad/xmonad-contrib.git
synced 2025-07-27 02:01:52 -07:00
Drop some recently added trailing whitespace
This commit is contained in:
@@ -299,7 +299,7 @@
|
|||||||
* `XMonad.Hooks.DynamicLog`
|
* `XMonad.Hooks.DynamicLog`
|
||||||
|
|
||||||
- Added `xmobarProp`, for property-based alternative to `xmobar`.
|
- Added `xmobarProp`, for property-based alternative to `xmobar`.
|
||||||
|
|
||||||
- Add the -dock argument to the dzen spawn arguments
|
- Add the -dock argument to the dzen spawn arguments
|
||||||
|
|
||||||
- The API for this module is frozen: this is now a compatibility wrapper.
|
- The API for this module is frozen: this is now a compatibility wrapper.
|
||||||
@@ -531,7 +531,7 @@
|
|||||||
|
|
||||||
* `XMonad.Layout.Renamed`
|
* `XMonad.Layout.Renamed`
|
||||||
|
|
||||||
- Added `KeepWordsLeft` and `KeepWordsRight` for keeping certain number of
|
- Added `KeepWordsLeft` and `KeepWordsRight` for keeping certain number of
|
||||||
words in left or right direction in layout description.
|
words in left or right direction in layout description.
|
||||||
|
|
||||||
## 0.16
|
## 0.16
|
||||||
|
@@ -61,7 +61,7 @@ apply (CutLeft i) s = drop i s
|
|||||||
apply (CutRight i) s = take (length s - i) s
|
apply (CutRight i) s = take (length s - i) s
|
||||||
apply (CutWordsLeft i) s = unwords $ drop i $ words s
|
apply (CutWordsLeft i) s = unwords $ drop i $ words s
|
||||||
apply (CutWordsRight i) s = let ws = words s
|
apply (CutWordsRight i) s = let ws = words s
|
||||||
in unwords $ take (length ws - i) ws
|
in unwords $ take (length ws - i) ws
|
||||||
apply (KeepWordsLeft i) s = unwords $ take i $ words s
|
apply (KeepWordsLeft i) s = unwords $ take i $ words s
|
||||||
apply (KeepWordsRight i) s = let ws = words s
|
apply (KeepWordsRight i) s = let ws = words s
|
||||||
in unwords $ drop (length ws - i) ws
|
in unwords $ drop (length ws - i) ws
|
||||||
|
Reference in New Issue
Block a user