brick 0.26 → 0.26.1
raw patch · 3 files changed
+11/−5 lines, 3 filesdep ~basePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base
API changes (from Hackage documentation)
Files
- CHANGELOG.md +5/−0
- brick.cabal +1/−1
- src/Brick/Widgets/List.hs +5/−4
CHANGELOG.md view
@@ -2,6 +2,11 @@ Brick changelog --------------- +0.26.1+------++ * Fixed haddock for listHandleEventVi.+ 0.26 ----
brick.cabal view
@@ -1,5 +1,5 @@ name: brick-version: 0.26+version: 0.26.1 synopsis: A declarative terminal user interface library description: Write terminal applications painlessly with 'brick'! You write an
src/Brick/Widgets/List.hs view
@@ -99,10 +99,11 @@ EvKey KPageUp [] -> listMovePageUp theList _ -> return theList --- | Enable list movement with the vi keys with a fallback if none match.--- Use (handleListEventVi handleListEvent) in place of handleListEvent to add--- the vi keys bindings to the standard ones.--- Movements handled:+-- | Enable list movement with the vi keys with a fallback if none+-- match. Use (handleListEventVi handleListEvent) in place of+-- handleListEvent to add the vi keys bindings to the standard ones.+-- Movements handled include:+-- -- * Up (k) -- * Down (j) -- * Page Up (Ctrl-b)