Rust · 173 bytes Raw Blame History
1 //! Integrated terminal panel
2 //!
3 //! Provides an embedded terminal emulator that can be toggled with Ctrl+`
4
5 mod panel;
6 mod pty;
7 mod screen;
8
9 pub use panel::TerminalPanel;
10