diff options
author | Blaž Hrastnik | 2021-02-18 09:35:39 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-02-18 09:35:39 +0000 |
commit | d0791e0f981a64b0c382c022ff79b0376cc09962 (patch) | |
tree | 6f20afe52b9dc1d90a864d08c869c5fb9be19229 /helix-core/src/lib.rs | |
parent | c9dd1c930edee68a32ef19ee407820c247937b05 (diff) |
core: Implement comment toggling module.
Diffstat (limited to 'helix-core/src/lib.rs')
-rw-r--r-- | helix-core/src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/helix-core/src/lib.rs b/helix-core/src/lib.rs index f9fe4bd4..977129ef 100644 --- a/helix-core/src/lib.rs +++ b/helix-core/src/lib.rs @@ -1,4 +1,5 @@ #![allow(unused)] +pub mod comment; mod diagnostic; pub mod graphemes; mod history; |