Make buffers fill from the bottom, and render each paragraph individually

The goal of rendering paragraph individually is to eventually avoid
redrawing everything every time there is a change
This commit is contained in:
2023-11-02 21:44:36 +01:00
parent 6dddd7ea2c
commit fe676cacda
8 changed files with 184 additions and 21 deletions

View File

@ -41,6 +41,7 @@ human-panic = "1.2.0"
inventory = "0.3"
itertools = "0.11.0"
lazy_static = "1.4.0"
lender = "0.2.1"
libc = "0.2.148"
log = "0.4.20"
nonempty = { version = "0.8.1", features = ["serialize"] }
@ -61,6 +62,14 @@ crossterm = { version = "0.27.0", features = ["serde", "event-stream"] }
ratatui = { version = "0.24.0", features = ["serde", "macros"] }
strip-ansi-escapes = "0.2.0"
tui-textarea = "0.3.0"
unicode-width = "0.1"
[patch.crates-io]
# we need these changes:
# * 'make widgets::reflow public' https://github.com/ratatui-org/ratatui/pull/607
# * 'define struct WrappedLine instead of anonymous tuple' https://github.com/ratatui-org/ratatui/pull/608
ratatui = { git = "https://github.com/progval/ratatui.git", rev = "54a3923b9d5f37da848dbc32a2ffb4eeb4f47490", features = ["serde", "macros"] }
#ratatui = { path = "../ratatui", features = ["serde", "macros"] }
[dev-dependencies]
pretty_assertions = "1.4.0"