aboutsummaryrefslogblamecommitdiff
path: root/helix-view/src/lib.rs
blob: 9bcc0b7d5112403fb678b78b03f6867e109a4187 (plain) (tree)
1
2
3
4
5
6
7
8
9

               
                  
                 
               
                 
             
              
                 
                           
              
             
             


                          
 
                           
                       
                                              
                     
                   
#[macro_use]
pub mod macros;

pub mod clipboard;
pub mod document;
pub mod editor;
pub mod graphics;
pub mod info;
pub mod input;
pub mod keyboard;
pub mod register_selection;
pub mod theme;
pub mod tree;
pub mod view;

slotmap::new_key_type! {
    pub struct DocumentId;
    pub struct ViewId;
}

pub use document::Document;
pub use editor::Editor;
pub use register_selection::RegisterSelection;
pub use theme::Theme;
pub use view::View;