diff options
author | Blaž Hrastnik | 2020-09-19 14:16:00 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2020-09-19 14:16:00 +0000 |
commit | 48330ddb5f36a1c5f44a636525089a019ce4439d (patch) | |
tree | 08f845b11f332757120a64f17b48e3222797df5a /helix-term/src/main.rs | |
parent | 1303ffd94ab4fcedc2d1b63107e4ccf6c07d3465 (diff) |
Command needs access to view information for certain changes.
Diffstat (limited to 'helix-term/src/main.rs')
-rw-r--r-- | helix-term/src/main.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/helix-term/src/main.rs b/helix-term/src/main.rs index 66ed5d2d..aca04641 100644 --- a/helix-term/src/main.rs +++ b/helix-term/src/main.rs @@ -1,6 +1,8 @@ #![allow(unused)] #[macro_use] mod macros; + +mod commands; mod editor; mod keymap; mod theme; |