summaryrefslogtreecommitdiffstats
path: root/grid-reader.c
AgeCommit message (Collapse)Author
2021-05-13More accurate vi(1) word navigation in copy mode and on the status line. ThisNicholas Marriott
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.
2021-04-18back-to-indentation fixes, from Anindya Mukherjee.Nicholas Marriott
2021-04-05Fix a couple of edge cases with the jump-back-xxx commands, and alsonicm
update back-to-indentation to use grid_reader, thereby fixing line wrapping issues. From Anindya Mukherjee, GitHub issue 2633.
2021-03-09Copy mode improvements from Anindya Mukherjee:nicm
- 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.
2021-02-22Move jump commands to grid reader, make them UTF-8 aware, and tidy up,nicm
from Anindya Mukherjee.
2020-12-22Break cursor movement in grid into a common set of functions that cannicm
handle line wrapping and so on in one place and use them for the obvious copy mode commands. From Anindya Mukherjee.