terrazzo-terminal 0.2.7

A simple web-based terminal emulator built on Terrazzo.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![cfg(feature = "text-editor")]

mod autocomplete;
pub mod file_path;
pub mod fsio;
mod manager;
pub mod notify;
mod path_selector;
mod rust_lang;
mod search;
mod side;
mod state;
mod synchronized_state;
pub mod ui;

#[cfg(feature = "client")]
terrazzo_css::import_style!(style, "text_editor.scss");