ftui-core 0.3.0

Terminal lifecycle, capabilities, and event parsing for FrankenTUI.
Documentation
1
2
3
4
5
6
7
8
9
10
11
error[E0599]: no method named `enable_bracketed_paste` found for struct `ftui_core::mode_typestate::TerminalMode<1>` in the current scope
 --> tests/compile_fail/raw_cannot_enable_paste.rs:6:9
  |
6 |     raw.enable_bracketed_paste();
  |         ^^^^^^^^^^^^^^^^^^^^^^
  |
help: there is a method `has_bracketed_paste` with a similar name
  |
6 -     raw.enable_bracketed_paste();
6 +     raw.has_bracketed_paste();
  |