Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | fix: 2 panics while setting style + off by 1 | ahkrr | 2021-06-07 |
| | | | | | | | | | | | | The panics would occur because set_style would draw outside of the the surface. Both occured using `find_prev` or `till_prev` In my case the first panic! would appear in a terminal with around 80 columns in helix/README.md going to the end of the file with `geglf(` the second with `geglfX` The off by one fix ensures that `find_nth_prev` starts at the first character to the left | ||
* | fix: make find_prev_char and till_prev_char work | ahkrr | 2021-06-05 |
| | | | | | | Bevore this PR `commands::find_prev_char` and `commands::till_prev_char` were triggerable through keys but `seach::find_nth_next()` was hardcoded in `_find_char`. The passed `fn` was nerver used. With this PR the passed `fn` is used. The change in search.rs resolves an off by one error in the behivor of `find_nth_prev` | ||
* | f/t: Check if at bounds before searching, refs #43, closes #37 | Blaž Hrastnik | 2021-06-02 |
| | |||
* | Implement the f/t/F/T find/till family of commands. | Blaž Hrastnik | 2021-03-11 |
| | |||
* | find-till (f) prototype, on_next_key mode implementation. | Blaž Hrastnik | 2021-03-11 |
| | |||
* | search: draft f/t | Blaž Hrastnik | 2021-03-10 |