1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
pub use makepad_widgets;
use makepad_widgets::*;

pub mod char;
pub mod code_editor;
pub mod decoration;
pub mod document;
pub mod history;
pub mod inlays;
pub mod iter;
pub mod layout;
pub mod selection;
pub mod session;
pub mod settings;
pub mod str;
pub mod text;
pub mod token;
pub mod tokenizer;
pub mod widgets;
pub mod wrap;

pub use self::{
    code_editor::CodeEditor, document::Document, history::History, layout::Line,
    selection::Selection, session::Session, settings::Settings, token::Token, tokenizer::Tokenizer,
};

pub fn live_design(cx: &mut Cx) {
    crate::code_editor::live_design(cx);
}