diff options
author | Blaž Hrastnik | 2020-12-10 09:13:42 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2020-12-10 09:13:42 +0000 |
commit | 5103dc96173afaa1c0793db56f60ec1fef1e0fc3 (patch) | |
tree | eda1e63fa536b589974c5bc7c7aff12fdac8c4f2 /helix-view/src/lib.rs | |
parent | be3c02104600e5bba8e3af7bc9787e62cba30183 (diff) |
move commands and keymap back to terminal.
Command needs to be able to deal with UI. We'll separate it again later
on.
Diffstat (limited to 'helix-view/src/lib.rs')
-rw-r--r-- | helix-view/src/lib.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/helix-view/src/lib.rs b/helix-view/src/lib.rs index 3b923744..f28c8116 100644 --- a/helix-view/src/lib.rs +++ b/helix-view/src/lib.rs @@ -1,8 +1,5 @@ -pub mod commands; pub mod document; pub mod editor; -pub mod keymap; -pub mod prompt; pub mod theme; pub mod view; |