summaryrefslogtreecommitdiff
path: root/runtime/doc/textprop.txt
Commit message (Collapse)AuthorAgeFilesLines
* Update runtime filesBram Moolenaar2023-05-141-3/+3
|
* Update runtime files.Bram Moolenaar2023-02-201-5/+5
|
* Update runtime files.Bram Moolenaar2023-02-021-3/+3
|
* Update runtime filesBram Moolenaar2022-12-311-5/+11
|
* Update runtime filesBram Moolenaar2022-11-231-2/+3
|
* Update runtime filesBram Moolenaar2022-10-161-1/+4
|
* patch 9.0.0741: cannot specify an ID for each item with prop_add_list()v9.0.0741Bram Moolenaar2022-10-131-7/+13
| | | | | | Problem: Cannot specify an ID for each item with prop_add_list(). (Sergey Vlasov) Solution: Add an optional fifth number to the item. (closes #11360)
* Update runtime filesBram Moolenaar2022-09-271-16/+23
|
* Update runtime filesBram Moolenaar2022-09-181-3/+5
|
* patch 9.0.0438: cannot put virtual text above a linev9.0.0438Bram Moolenaar2022-09-101-0/+1
| | | | | Problem: Cannot put virtual text above a line. Solution: Add the "above" value for "text_align".
* Update runtime filesBram Moolenaar2022-08-241-2/+7
|
* patch 9.0.0247: cannot add padding to virtual text without highlightv9.0.0247Bram Moolenaar2022-08-231-4/+12
| | | | | Problem: Cannot add padding to virtual text without highlight. Solution: Add the "text_padding_left" argument. (issue #10906)
* Update runtime filesBram Moolenaar2022-08-151-4/+9
|
* patch 9.0.0144: text property cannot override 'cursorline' highlightv9.0.0144Bram Moolenaar2022-08-051-0/+2
| | | | | | Problem: Text property cannot override 'cursorline' highlight. Solution: Add the "override" flag to prop_type_add(). (closes #5533, closes #8225).
* patch 9.0.0131: virtual text with Tab is not displayed correctlyv9.0.0131Bram Moolenaar2022-08-011-0/+2
| | | | | Problem: Virtual text with Tab is not displayed correctly. Solution: Change any Tab to a space.
* patch 9.0.0121: cannot put virtual text after or below a linev9.0.0121Bram Moolenaar2022-07-311-5/+27
| | | | | Problem: Cannot put virtual text after or below a line. Solution: Add "text_align" and "text_wrap" arguments.
* Update runtime filesBram Moolenaar2022-07-291-1/+2
|
* patch 9.0.0067: cannot show virtual textv9.0.0067Bram Moolenaar2022-07-251-1/+19
| | | | | Problem: Cannot show virtual text. Solution: Initial changes for virtual text support, using text properties.
* release version 9.0v9.0.0000Bram Moolenaar2022-06-281-1/+1
| | | | | Problem: About time to release Vim 9.0. Solution: Update the version number everywhere.
* patch 8.2.3652: can only get text properties one line at a timev8.2.3652Yegappan Lakshmanan2021-11-231-5/+41
| | | | | | Problem: Can only get text properties one line at a time. Solution: Add options to prop_list() to use a range of lines and filter by types. (Yegappan Lakshmanan, closes #9138)
* patch 8.2.3446: not enough tests for empty string argumentsv8.2.3446Yegappan Lakshmanan2021-09-171-1/+1
| | | | | Problem: Not enough tests for empty string arguments. Solution: Add tests, fix type check. (Yegappan Lakshmanan, closes #8881)
* Update runtime filesBram Moolenaar2021-08-291-1/+1
|
* patch 8.2.3356: adding many text properties requires a lot of function callsv8.2.3356Yegappan Lakshmanan2021-08-161-0/+32
| | | | | | Problem: Adding many text properties requires a lot of function calls. Solution: Add the prop_add_list() function. (Yegappan Lakshmanan, closes #8751)
* patch 8.2.3233: prop_list() and prop_find() do not indicate the bufferv8.2.3233Martin Tournoij2021-07-281-0/+2
| | | | | | Problem: prop_list() and prop_find() do not indicate the buffer for the used type. Solution: Add "type_bufnr" to the results. (closes #8647)
* Update runtime filesBram Moolenaar2021-05-301-3/+4
|
* Update runtime files.Bram Moolenaar2021-03-311-3/+3
|
* patch 8.2.2667: prop_find() cannot find item matching both id and typev8.2.2667Bram Moolenaar2021-03-271-0/+2
| | | | | Problem: prop_find() cannot find item matching both id and type. Solution: Add the "both" argument. (Naohiro Ono, closes #8019)
* Update runtime files.Bram Moolenaar2020-10-261-3/+3
|
* Update runtime filesBram Moolenaar2020-07-101-1/+1
|
* Update runtime filesBram Moolenaar2020-05-011-3/+3
|
* Update runtime filesBram Moolenaar2020-03-141-3/+3
|
* patch 8.2.0357: cannot delete a text property matching both id and typev8.2.0357Bram Moolenaar2020-03-051-0/+1
| | | | | | Problem: Cannot delete a text property matching both id and type. (Axel Forsman) Solution: Add the "both" argument.
* Update runtime files.Bram Moolenaar2020-02-261-4/+6
|
* Update runtime files.Bram Moolenaar2020-01-141-1/+1
|
* patch 8.2.0110: prop_find() is not implementedv8.2.0110Bram Moolenaar2020-01-101-21/+0
| | | | | Problem: prop_find() is not implemented. Solution: Implement prop_find(). (Ryan Hackett, closes #5421, closes #4970)
* Vim 8.2 releasev8.2.0000v8.2.0Bram Moolenaar2019-12-121-1/+1
|
* Runtime file updates.Bram Moolenaar2019-12-071-2/+2
|
* Update runtime filesBram Moolenaar2019-11-131-3/+3
|
* Update runtime filesBram Moolenaar2019-11-101-2/+2
|
* Update runtime filesBram Moolenaar2019-10-261-8/+7
|
* Update runtime filesBram Moolenaar2019-09-071-1/+1
|
* patch 8.1.1986: more functions can be used as methodsv8.1.1986Bram Moolenaar2019-09-041-2/+21
| | | | | Problem: More functions can be used as methods. Solution: Make textprop functions usable as a method.
* Runtime files update.Bram Moolenaar2019-08-311-3/+3
|
* Update runtime files.Bram Moolenaar2019-08-171-1/+1
|
* patch 8.1.1844: buffer no longer unloaded when adding text propertiesv8.1.1844Bram Moolenaar2019-08-131-0/+5
| | | | | Problem: Buffer no longer unloaded when adding text properties to it. Solution: Do not create the memfile. (closes #4808)
* patch 8.1.1726: the eval.txt help file is too bigv8.1.1726Bram Moolenaar2019-07-211-1/+197
| | | | | | Problem: The eval.txt help file is too big. Solution: Split off testing support to testing.txt. Move function details to where the functionality is explained.
* Update runtime filesBram Moolenaar2019-06-221-2/+2
|
* Update runtime files.Bram Moolenaar2019-05-261-2/+7
|
* Update runtime filesBram Moolenaar2019-05-091-4/+4
|
* patch 8.1.1280: remarks about functionality not in Vi clutters the helpv8.1.1280Bram Moolenaar2019-05-051-1/+0
| | | | | | | | Problem: Remarks about functionality not in Vi clutters the help. Solution: Move all info about what is new in Vim or already existed in Vi to vi_diff.txt. Remove {not in Vi} remarks. (closes #4268) Add "noet" to the help files modeline. Also include many other help file improvements.