Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-view/src/lib.rs')
| -rw-r--r-- | helix-view/src/lib.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/helix-view/src/lib.rs b/helix-view/src/lib.rs index a77ce155..182c89c3 100644 --- a/helix-view/src/lib.rs +++ b/helix-view/src/lib.rs @@ -1,6 +1,10 @@ #[macro_use] pub mod macros; +pub mod backend { + #[cfg(feature = "term")] + pub mod term; +} pub mod clipboard; pub mod document; pub mod editor; |