CHANGES: Re-indent newest changes

To conform with the style that all of the other changes (and the
breaking changes of the same release) have.
This commit is contained in:
Tony Zorman 2022-11-01 18:10:13 +01:00
parent ab6299a488
commit bb9d6edad6

View File

@ -62,57 +62,57 @@
### New Modules ### New Modules
* `XMonad.Hooks.OnPropertyChange`: * `XMonad.Hooks.OnPropertyChange`:
- A new module replicating the functionality of - A new module replicating the functionality of
`XMonad.Hooks.DynamicProperty`, but with more discoverable names. `XMonad.Hooks.DynamicProperty`, but with more discoverable names.
### Bug Fixes and Minor Changes ### Bug Fixes and Minor Changes
* `XMonad.Util.NamedScratchpad` * `XMonad.Util.NamedScratchpad`
- Added `addExclusives`, `resetFocusedNSP`, `setNoexclusive`, - Added `addExclusives`, `resetFocusedNSP`, `setNoexclusive`,
`resizeNoexclusive`, and `floatMoveNoexclusive` in order to augment `resizeNoexclusive`, and `floatMoveNoexclusive` in order to augment
named scratchpads with the exclusive scratchpad functionality of named scratchpads with the exclusive scratchpad functionality of
`XMonad.Util.ExclusiveScratchpads`. `XMonad.Util.ExclusiveScratchpads`.
* `XMonad.Layout.BorderResize` * `XMonad.Layout.BorderResize`
- Added `borderResizeNear` as a variant of `borderResize` that can - Added `borderResizeNear` as a variant of `borderResize` that can
control how many pixels near a border resizing still works. control how many pixels near a border resizing still works.
* `XMonad.Util.Run` * `XMonad.Util.Run`
- It is now ensured that all arguments of `execute` and `eval` are - It is now ensured that all arguments of `execute` and `eval` are
quoted. Likewise, `executeNoQuote` is added as a version of quoted. Likewise, `executeNoQuote` is added as a version of
`execute` that does not do that. `execute` that does not do that.
- Added `findFile` as a shorthand to call `find-file`. - Added `findFile` as a shorthand to call `find-file`.
- Added `list` and `saveExcursion` to the list of Emacs commands. - Added `list` and `saveExcursion` to the list of Emacs commands.
* `XMonad.Util.Parser` * `XMonad.Util.Parser`
- Added the `gather`, `count`, `between`, `option`, `optionally`, - Added the `gather`, `count`, `between`, `option`, `optionally`,
`skipMany`, `skipMany1`, `chainr`, `chainr1`, `chainl`, `chainl1`, `skipMany`, `skipMany1`, `chainr`, `chainr1`, `chainl`, `chainl1`,
and `manyTill` functions, in order to achieve feature parity with and `manyTill` functions, in order to achieve feature parity with
`Text.ParserCombinators.ReadP`. `Text.ParserCombinators.ReadP`.
* `XMonad.Actions.FloatKeys` * `XMonad.Actions.FloatKeys`
- Added `directionMoveWindow` and `directionMoveWindow` as more - Added `directionMoveWindow` and `directionMoveWindow` as more
alternatives to the existing functions. alternatives to the existing functions.
* `XMonad.Hooks.InsertPosition` * `XMonad.Hooks.InsertPosition`
- Added `setupInsertPosition` as a combinator alternative to - Added `setupInsertPosition` as a combinator alternative to
`insertPosition`. `insertPosition`.
* `XMonad.Actions.Navigation2D` * `XMonad.Actions.Navigation2D`
- Added `sideNavigation` as a fallback to the default tiling strategy, - Added `sideNavigation` as a fallback to the default tiling strategy,
in case `lineNavigation` can't find a window. This benefits in case `lineNavigation` can't find a window. This benefits
especially users who use `XMonad.Layout.Spacing`. especially users who use `XMonad.Layout.Spacing`.
* `XMonad.Prompt.OrgMode` * `XMonad.Prompt.OrgMode`