Arijit Dey
Arijit Dey
Closes #138 This branch is created from the `faster-append` branch because it contains our benchmarking code. However it will be merged into thee `main` branch with all the benchmarking code...
## The Problem Although minus is quite performant in its routine stuff like efficiently drawing the terminal, handling terminal events etc however one of the areas where it isn't optimized...
The following commits address performance issues throughout various sections of minus ## Test appending The benchmarks have been taken to create a 1GB text buffer in minus. The (...) tells...
As I am building the serializer, I think we need some sort of way to deal with formatting configuration for the individual fields like which fields need to be serialized...
Currently there's no way to mark a `ValueT` as optional and the only possible workaround to this is to use a `OptionT` with a `val` field which limits the ergonomics...
**Is your feature request related to a problem? Please describe.** I am looking for a component which can be resized by the user at will. Basically a parent element like...
ANSI escape codes `\033]nS` and `\033]nT` command for scrolling the terminal up and down respectively.
`Term::cursor_left()` moves the cursor to the left by 1 column even when the actual argument passed is 0. This is quite likely a bug and should be fixed. Potential candidates...