diff options
| author | tslil <tslil@posteo.de> | 2025-10-31 11:29:08 +0000 |
|---|---|---|
| committer | tslil <tslil@posteo.de> | 2025-10-31 11:55:36 +0000 |
| commit | f7c23142e8c73732fe3f75d03dc36e905f28715b (patch) | |
| tree | 7dc1e0c6919cc9469f013b6015d4dc9356c7a9c9 /rprt-engine/src/lib.rs | |
| parent | c16e21d82e3b398c572e48ccbf4ff896086425ef (diff) | |
Refactor selection functions into a module, one function per file
Diffstat (limited to 'rprt-engine/src/lib.rs')
| -rw-r--r-- | rprt-engine/src/lib.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/rprt-engine/src/lib.rs b/rprt-engine/src/lib.rs index 3eda2e4..8886578 100644 --- a/rprt-engine/src/lib.rs +++ b/rprt-engine/src/lib.rs @@ -1,10 +1,8 @@ -// RPRT Engine - Core text editing functionality - pub mod buffer; pub mod expression; pub mod monad; pub mod parser; pub mod selection; -pub mod selection_function; +pub mod selection_functions; pub mod state; pub mod token; |
