diff --git a/CHANGELOG.md b/CHANGELOG.md index 51d9a72..68faef2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ Released -------- +0.9.1 - 27 Okt 2024 +=================== +- Support . Tabs are currently visually interpreted as spaces. The number of spaces can be set via (by default 2) +```rust +EditorView::new(&mut state).tab_width(2); +``` + +- Add 'e' keymap: Move word forward to end of a word + 0.9.0 - 22 Okt 2024 =================== - Bump ratatui to v0.29.0 diff --git a/Cargo.lock b/Cargo.lock index 16a93c4..f14412b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -244,7 +244,7 @@ dependencies = [ [[package]] name = "edtui" -version = "0.9.0" +version = "0.9.1" dependencies = [ "arbitrary", "arboard", diff --git a/Cargo.toml b/Cargo.toml index 7bd4e17..c0280be 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "edtui" -version = "0.9.0" +version = "0.9.1" edition = "2021" repository = "https://github.com/preiter93/edtui" keywords = ["ratatui", "tui", "editor", "text", "vim"]