aboutsummaryrefslogtreecommitdiff
path: root/helix-core/src/lib.rs
diff options
context:
space:
mode:
authorJason Rodney Hansen2021-11-21 17:38:41 +0000
committerIvan Tham2021-12-05 08:22:58 +0000
commitc9641fccedc51737a74ed47009279fa688462ea9 (patch)
treea057ce6a6a476224238dbb0341cbb8371e88497d /helix-core/src/lib.rs
parent2a0c685a7857a94db2ac61b586c92425da273ea7 (diff)
Add `Increment` trait
Diffstat (limited to 'helix-core/src/lib.rs')
-rw-r--r--helix-core/src/lib.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/helix-core/src/lib.rs b/helix-core/src/lib.rs
index b16a716f..4ae044cc 100644
--- a/helix-core/src/lib.rs
+++ b/helix-core/src/lib.rs
@@ -1,17 +1,16 @@
pub mod auto_pairs;
pub mod chars;
pub mod comment;
-pub mod date;
pub mod diagnostic;
pub mod diff;
pub mod graphemes;
pub mod history;
+pub mod increment;
pub mod indent;
pub mod line_ending;
pub mod macros;
pub mod match_brackets;
pub mod movement;
-pub mod numbers;
pub mod object;
pub mod path;
mod position;