summaryrefslogtreecommitdiff
path: root/test/regression/1920-crash-on-python-in-docstring
AgeCommit message (Collapse)Author
2021-09-07Add support for curly underline and separate underline colorMaxime Coste
Add support for a third color in face definition that controls the underline and a 'c' attribute for curly underline (that takes precedence over 'u' if both are specified) Allow empty colors to mean default, so that `,,red+u` means the same as `default,default,red+u` Fixes #4138
2020-11-23Fix test and re-add triple_string support in python highlightingMaxime Coste
Triple strings are now distinct from docstrings, triple strings only preceeded by blanks on the line are considered docstrings. Avoid highlighting of the closing marker using a lookahead, this is not fully correct as it will break on a double quote triple docstring containing a single quote triple string but that seems improbable enough; if we encounter this in the wild we can split the two docstring formats into separate regions.
2019-10-13test: Allow expect-style UI tests, testing any varJason Felice
2019-03-21Add categories in rc/Alex Leferry 2
Closes #2783
2018-09-24Misc fixesOlivier Perret
2018-09-24Fix broken test after change in cursor facesMaxime Coste
2018-05-19test/run: Rename "display" expected ui output file as "ui-out"Maxime Coste
2018-04-29Fix tests after changes to json_ui outputMaxime Coste
2018-04-23Change client default name: "unnamed0" → "client0"Delapouite
2018-03-11Detect infinit recursion in reference highlightingMaxime Coste
Reference highlighters allow for potential mutual recursion between highlighters. This is usually fine, but if the recursion happens on the same buffer range, it means we will recurse infinitely. Fixes #1920