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<0>` in the current scope
 --> tests/compile_fail/cooked_cannot_enable_paste.rs:6:12
  |
6 |     cooked.enable_bracketed_paste();
  |            ^^^^^^^^^^^^^^^^^^^^^^
  |
help: there is a method `has_bracketed_paste` with a similar name
  |
6 -     cooked.enable_bracketed_paste();
6 +     cooked.has_bracketed_paste();
  |