1
0
зеркало из https://github.com/glebtv/tui-textarea.git synced 2026-08-28 11:36:17 +03:00

describe versioning and add search operation to modal usage

Этот коммит содержится в:
rhysd
2022-07-17 21:58:02 +09:00
родитель 4e5b684baf
Коммит 952158f93a

Просмотреть файл

@@ -458,6 +458,13 @@ loop {
textarea.move_cursor(CursorMove::Home);
mode = Mode::Insert;
}
Input { key: Key::Char('/'), .. } => {
let pat = ...;
textarea.set_search_pattern(pat)?;
}
Input { key: Key::Esc, .. } => textarea.set_search_pattern("").unwrap(),
Input { key: Key::Char('n'), .. } => textarea.search_forward(),
Input { key: Key::Char('N'), .. } => textarea.search_back(),
_ => {},
},
Mode::Insert => match read()?.into() {
@@ -594,6 +601,15 @@ loop {
See [`split` example](./examples/split.rs) and [`editor` example](./examples/editor.rs) for working example.
## Versioning
This crate is not reaching v1.0.0 yet. There is no plan to bump the major version for now. Current versioning policy is
as follows:
- Major: Fixed to 0
- Minor: Bump on breaking change
- Patch: Bump on new feature or bug fix
## Contributing to tui-textarea
This project is developed [on GitHub][repo].