Releases: preiter93/edtui
Releases · preiter93/edtui
v0.9.4
v0.9.3
v0.9.2
- Impl 'yy': Yank current line
- Handle cases where yanked buffer starts with a new line character. In this case we paste the yank buffer into the start of a next new line, instead of breaking the current line. This matches vim behaviour.
- Fix mouse selection on wrapped lines
v0.9.1
v0.9.0
v0.8.5
0.8.5 - 13 Okt 2023=4
- Add
D
keymapping: Delete to end of line - Syntax highlighting
#[cfg(feature = "syntax-highlighting")]
{
use edtui::EditorState;
use edtui::EditorView;
use edtui::SyntaxHighlighter;
let syntax_highlighter = SyntaxHighlighter::new("dracula", "rs");
EditorView::new(&mut EditorState::default())
.syntax_highlighter(Some(syntax_highlighter));
}
- Add
ci*
to change between delimiters, supported [', ", (, [, {] - Improve README