Skip to main content

accepted/
lib.rs

1#![feature(bound_cloned)]
2
3pub mod buffer;
4pub mod buffer_mode;
5pub mod buffer_tab;
6mod clipboard;
7mod compiler;
8pub mod config;
9pub mod core;
10mod cursor;
11pub mod draw;
12mod draw_cache;
13mod env;
14mod formatter;
15mod indent;
16mod job_queue;
17mod lsp;
18mod mode;
19pub mod parenthesis;
20mod rmate;
21mod rustc;
22pub mod storage;
23pub mod syntax;
24mod tabnine;
25mod text_object;
26pub mod theme;
27
28pub use buffer::Buffer;
29pub use buffer_mode::BufferMode;