1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#![warn(clippy::all, clippy::pedantic)]
// ▞▀▖       ▌        ▞▀▖▞▀▖▞▀▖▛▀▘
// ▌  ▞▀▖▌  ▌▛▀▖▞▀▖▌ ▌▚▄▘▙▄  ▗▘▙▄
// ▌ ▖▌ ▌▐▐▐ ▌ ▌▌ ▌▚▄▌▌ ▌▌ ▌▗▘ ▖ ▌
// ▝▀ ▝▀  ▘▘ ▀▀ ▝▀ ▗▄▘▝▀ ▝▀ ▀▀▘▝▀

mod api;
pub mod buffer;
pub mod line_number;
pub mod mode;
pub mod position;
pub mod revi;
pub mod revi_command;
mod text_formater;
pub mod window;

pub mod keymapper;

pub use buffer::Buffer;
pub use keymapper::Mapper;
pub use mode::Mode;
pub use position::Position;
pub use revi::ReVi;
pub use revi_command::ReViCommand;