summaryrefslogtreecommitdiff
path: root/src/textobject.c
Commit message (Collapse)AuthorAgeFilesLines
* patch 9.0.1561: display wrong when moving cursor to above the top linev9.0.1561Luuk van Baal2023-05-151-0/+2
| | | | | | | Problem: Display wrong when moving cursor to above the top line and 'smoothscroll' is set. Solution: Call adjust_skipcol() in more places and make it work better. (Luuk van Baal, closes #12395)
* patch 9.0.0222: no good reason why text objects are only in larger buildsv9.0.0222Bram Moolenaar2022-08-161-3/+2
| | | | | Problem: No good reason why text objects are only in larger builds. Solution: Graduate +textobjects.
* patch 9.0.0206: redraw flags are not named specificallyv9.0.0206Bram Moolenaar2022-08-141-6/+6
| | | | | Problem: Redraw flags are not named specifically. Solution: Prefix "UPD_" to the flags, for UPDate_screen().
* patch 8.2.5120: searching for quotes may go over the end of the linev8.2.5120Bram Moolenaar2022-06-181-0/+6
| | | | | Problem: Searching for quotes may go over the end of the line. Solution: Check for running into the NUL.
* patch 8.2.5012: cannot select one character inside ()v8.2.5012LemonBoy2022-05-241-0/+2
| | | | | | Problem: Cannot select one character inside (). Solution: Do not try to extend the area if it is empty. (closes #10472, closes #6616)
* patch 8.2.4925: trailing backslash may cause reading past end of linev8.2.4925Bram Moolenaar2022-05-091-0/+4
| | | | | Problem: Trailing backslash may cause reading past end of line. Solution: Check for NUL after backslash.
* patch 8.2.3255: ci" finds following string but ci< and others don'tv8.2.3255Connor Lane Smith2021-07-311-5/+18
| | | | | | Problem: ci" finds following string but ci< and others don't. Solution: When not inside an object find the start. (Connor Lane Smit, closes #8670)
* patch 8.2.1850: "vat" does not select tags correctly over line breakv8.2.1850Bram Moolenaar2020-10-151-2/+2
| | | | | Problem: "vat" does not select tags correctly over line break. Solution: Adjust the search pattern. (Aufar Gilbran, closes #7136)
* patch 8.2.0999: moving to next sentence gets stuck on quotev8.2.0999Bram Moolenaar2020-06-181-0/+15
| | | | | | Problem: Moving to next sentence gets stuck on quote. Solution: When moving to the next sentence doesn't result in moving, advance a character and try again. (closes #6291)
* patch 8.2.0660: the search.c file is a bit bigv8.2.0660Bram Moolenaar2020-04-291-0/+1965
Problem: The search.c file is a bit big. Solution: Split off the text object code to a separate file. (Yegappan Lakshmanan, closes #6007)