aboutsummaryrefslogtreecommitdiff
path: root/grid-reader.c
Commit message (Collapse)AuthorAge
* More accurate vi(1) word navigation in copy mode and on the status line. ThisNicholas Marriott2021-05-13
| | | | | | changes the meaning of the word-separators option - setting it to the empty string is equivalent to the previous behavior. From Will Noble in GitHub issue 2693.
* back-to-indentation fixes, from Anindya Mukherjee.Nicholas Marriott2021-04-18
|
* Fix a couple of edge cases with the jump-back-xxx commands, and alsonicm2021-04-05
| | | | | update back-to-indentation to use grid_reader, thereby fixing line wrapping issues. From Anindya Mukherjee, GitHub issue 2633.
* Copy mode improvements from Anindya Mukherjee:nicm2021-03-09
| | | | | | | | | | - Fix word and word-end for wrapped lines. - Fix copying of selection end on wrapped lines. - Fix wrapped word selection edge case. - Update select-line to respect wrapped lines. - Update window_copy_..._pos() functions to use grid_reader. GitHub issue 2605.
* Move jump commands to grid reader, make them UTF-8 aware, and tidy up,nicm2021-02-22
| | | | from Anindya Mukherjee.
* Break cursor movement in grid into a common set of functions that cannicm2020-12-22
handle line wrapping and so on in one place and use them for the obvious copy mode commands. From Anindya Mukherjee.