aboutsummaryrefslogtreecommitdiff
path: root/helix-core/src/selection.rs
Commit message (Expand)AuthorAge
* Add unit tests for some of the new `Range` methods.Nathan Vegdahl2021-07-27
* Improve `Range` documentation and organization.Nathan Vegdahl2021-07-27
* Collect some common patterns into methods on `Range`.Nathan Vegdahl2021-07-26
* Switch to a cleaner range-head moving abstraction.Nathan Vegdahl2021-07-24
* Fix append mode, and make insertion always happen at head of range.Nathan Vegdahl2021-07-23
* Calculate the line that the range head is on correctly.Nathan Vegdahl2021-07-22
* Fix selections not being modified quite correctly with text edits.Nathan Vegdahl2021-07-21
* Fixes for misc bugs with view movement.Nathan Vegdahl2021-07-21
* Fix comment toggle command also sometimes toggling the next line.Nathan Vegdahl2021-07-20
* Fix various bugs related to goto-end-of-line command.Nathan Vegdahl2021-07-20
* Fix `Selection::push()` to make the pushed range primary.Nathan Vegdahl2021-07-20
* Fixed primary cursor position calculation to use 1-width semantics.Nathan Vegdahl2021-07-19
* Update surround commands to work with gap indexing.Nathan Vegdahl2021-07-08
* Implement `Range::put()` which manages range movements and extensions.Nathan Vegdahl2021-07-08
* Merge branch 'master' into great_line_ending_and_cursor_range_cleanupNathan Vegdahl2021-07-06
|\
| * Add object selection (textobjects) (#385)Gokul Soumya2021-07-03
* | Fix a couple additional `unused` warnings after merge.Nathan Vegdahl2021-07-02
* | Merge branch 'master' into great_line_ending_and_cursor_range_cleanupNathan Vegdahl2021-07-02
|\|
| * Fix all remaining warnings in helix-core except for two.Nathan Vegdahl2021-07-02
| * Remove #[allow(unused)] from helix-core, and fix unused imports.Nathan Vegdahl2021-07-02
* | Ensure a minimum selection width on commands that need it.Nathan Vegdahl2021-07-01
* | Make `Selection`'s normalize and transform methods self-consuming only.Nathan Vegdahl2021-07-01
* | Clean up `Selection` to not use so many allocations.Nathan Vegdahl2021-07-01
* | Better validation method APIs for `Range`.Nathan Vegdahl2021-07-01
* | Add `Range` methods for various kinds of validation.Nathan Vegdahl2021-07-01
* | Change the `Range` type and associated functions to gap indexing.Nathan Vegdahl2021-07-01
|/
* fix: Correctly merge multiple selection ranges togetherBlaž Hrastnik2021-06-30
* fix: Select matching at the start of the doc could crash. Fixes #346Blaž Hrastnik2021-06-23
* Movement fixes, refactor and unit test suite (#217)PabloMansanet2021-06-11
* Fixing Multiple Panics (#121)Kirawi2021-06-05
* LintBlaž Hrastnik2021-05-09
* Fix overlap calculation.Blaž Hrastnik2021-04-10
* N as extend with search (for now, N should be search_prev).Blaž Hrastnik2021-04-09
* Fix range.overlap()Blaž Hrastnik2021-04-09
* Store intra-files jumps (goto) on the jumplist.Blaž Hrastnik2021-03-29
* clippy lintBlaž Hrastnik2021-03-24
* Provide a capacity on Selection::new's normalize.Blaž Hrastnik2021-03-22
* clippy lintsBlaž Hrastnik2021-03-22
* Selection: fail early if new() is called with no ranges.Blaž Hrastnik2021-03-22
* Implement auto-pairs behavior for open and close.Blaž Hrastnik2021-03-22
* Implement iter() and len() directly on Selection.Blaž Hrastnik2021-03-19
* Implement keep_selections (filter selections on regex).Blaž Hrastnik2021-03-15
* Cleanup: use doc.selection() instead of doc.state.selection().Blaž Hrastnik2021-03-14
* commands: add * as selection search.Blaž Hrastnik2021-02-22
* treewide: &RopeSlice -> RopeSlice. It's Copy so no reason to pass by refBlaž Hrastnik2021-02-18
* minor changesBlaž Hrastnik2021-02-17
* Finally: Retain horizontal position when moving vertically.Blaž Hrastnik2021-02-12
* simplify.Blaž Hrastnik2021-02-05
* commands: Implement select_on_matches.Blaž Hrastnik2021-01-22
* Introduce Selection::point.Blaž Hrastnik2020-12-03