diff options
author | Blaž Hrastnik | 2021-02-03 10:36:54 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-02-03 10:36:54 +0000 |
commit | 448c1abba04e11f77e53629dc06fe47619a741d4 (patch) | |
tree | 47a5ae9d08bf49796348d981120105cc054e736b /helix-view/src/lib.rs | |
parent | 2bea5db7bdb3ad3fa029df830d824cd5c26a153f (diff) |
View tree implementation: render multiple split views.
Cursors are still a bit buggy and we should render in focus statusbar
differently than in the other pane.
Diffstat (limited to 'helix-view/src/lib.rs')
-rw-r--r-- | helix-view/src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/helix-view/src/lib.rs b/helix-view/src/lib.rs index f28c8116..05de7e9f 100644 --- a/helix-view/src/lib.rs +++ b/helix-view/src/lib.rs @@ -1,6 +1,7 @@ pub mod document; pub mod editor; pub mod theme; +pub mod tree; pub mod view; pub use document::Document; |