aboutsummaryrefslogtreecommitdiff
path: root/helix-core/src/increment/number.rs
Commit message (Collapse)AuthorAge
* Separate jump behavior from increment/decrement (#4123)greg-enbala2023-01-16
| | | | | | | | | | | | | | increment/decrement (C-a/C-x) had some buggy behavior where selections could be offset incorrectly or the editor could panic with some edits that changed the number of characters in a number or date. These stemmed from the automatic jumping behavior which attempted to find the next date or integer to increment. The jumping behavior also complicated the code quite a bit and made the behavior somewhat difficult to predict when using many cursors. This change removes the automatic jumping behavior and only increments or decrements when the full text in a range of a selection is a number or date. This simplifies the code and fixes the panics and buggy behaviors from changing the number of characters.
* Resolve a bunch of upcoming clippy lintsBlaž Hrastnik2022-11-04
|
* Improve Readability (#2639)Ryan Russell2022-06-01
|
* Replace tendril with smartstringBlaž Hrastnik2022-02-10
| | | | Slightly smaller API surface, less dependencies.
* Add `Increment` traitJason Rodney Hansen2021-12-05