mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-26 19:33:30 +04:00
9 lines
148 B
Rust
9 lines
148 B
Rust
pub mod date_time;
|
|
pub mod number;
|
|
|
|
use crate::{Range, Tendril};
|
|
|
|
pub trait Increment {
|
|
fn increment(&self, amount: i64) -> (Range, Tendril);
|
|
}
|