summaryrefslogtreecommitdiff
path: root/src/proto/highlight.pro
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.2.4045: some global functions are only used in one filev8.2.4045Yegappan Lakshmanan2022-01-081-3/+0
| | | | | Problem: Some global functions are only used in one file. Solution: Make the functions static. (Yegappan Lakshmanan, closes #9492)
* patch 8.2.3590: test for v:colornames sometimes failsv8.2.3590Drew Vogel2021-11-131-1/+0
| | | | | | Problem: Test for v:colornames sometimes fails. (Dominique Pellé) Solution: Check features. Clear v:colornames between tests. (Drew Vogel, closes #9105, closes #9073)
* patch 8.2.3578: manipulating highlighting is complicatedv8.2.3578Yegappan Lakshmanan2021-11-031-0/+2
| | | | | | Problem: Manipulating highlighting is complicated. Solution: Add the hlget() and hlset() functions. (Yegappan Lakshmanan, closes #9039)
* patch 8.2.3562: cannot add color namesv8.2.3562Drew Vogel2021-10-241-0/+6
| | | | | Problem: Cannot add color names. Solution: Add the v:colornames dictionary. (Drew Vogel, closes #8761)
* patch 8.2.1078: highlight and match functionality together in one filev8.2.1078Bram Moolenaar2020-06-281-15/+0
| | | | | | Problem: Highlight and match functionality together in one file. Solution: Move match functionality to a separate file. (Yegappan Lakshmanan, closes #6352)
* patch 8.1.1743: 'hlsearch' and match highlighting in the wrong placev8.1.1743Bram Moolenaar2019-07-241-0/+6
| | | | | Problem: 'hlsearch' and match highlighting in the wrong place. Solution: Move highlighting from inside screen functions to highlight.c.
* patch 8.1.1742: still some match functions in evalfunc.cv8.1.1742Bram Moolenaar2019-07-241-3/+3
| | | | | Problem: Still some match functions in evalfunc.c. Solution: Move them to highlight.c.
* patch 8.1.1734: the evalfunc.c file is too bigv8.1.1734Bram Moolenaar2019-07-221-0/+9
| | | | | Problem: The evalfunc.c file is too big. Solution: Move some functions to other files.
* patch 8.1.1699: highlight_ga can be local instead of globalv8.1.1699Bram Moolenaar2019-07-151-1/+4
| | | | | | Problem: Highlight_ga can be local instead of global. Solution: Move highlight_ga into highlight.c. (Yegappan Lakshmanan, closes #4675)
* patch 8.1.1693: syntax coloring and highlighting is in one big filev8.1.1693Bram Moolenaar2019-07-141-0/+43
Problem: Syntax coloring and highlighting is in one big file. Solution: Move the highlighting to a separate file. (Yegappan Lakshmanan, closes #4674)