diff options
Diffstat (limited to 'helix-view/src/lib.rs')
-rw-r--r-- | helix-view/src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/helix-view/src/lib.rs b/helix-view/src/lib.rs index e0a230ca..8ea634af 100644 --- a/helix-view/src/lib.rs +++ b/helix-view/src/lib.rs @@ -1,7 +1,9 @@ pub mod commands; +pub mod editor; pub mod keymap; pub mod prompt; pub mod theme; pub mod view; +pub use editor::Editor; pub use view::View; |