Skip to content

v0.2.4

Compare
Choose a tag to compare
@rhysd rhysd released this 21 Oct 16:23
· 152 commits to main since this release
  • Support the ratatui's termwiz backend. ratatui-termwiz feature was newly added for this.
    • Add the following dependencies in your Cargo.toml to use termwiz support.
      termwiz = "0.20"
      ratatui = { version = "0.23", default-features = false, features = ["termwiz"] }
      tui-textarea = { version = "0.2.4", default-features = false, features = ["ratatui-termwiz"] }
    • Read and run the termwiz example to know the API usage.
      cargo run --example termwiz --no-default-features --features=ratatui-termwiz
  • Fix calculating the length of tab character when the line contains wide characters. Now the length of wide characters like あ are calculated as 2 correctly.