summaryrefslogtreecommitdiff
path: root/test/highlight/replace-only-fully-selected-ranges/script
AgeCommit message (Collapse)Author
2024-08-08Delay NormalMode clearing of status line and info box to next idleMaxime Coste
A common pattern is for info/echo messages to be generated by idle hooks but the clearing of previous info/echo was done immediately on normal mode events. This led to flickering of the info box especially when a hook was repeatidly generating the same info (like moving a cursor in the same word where the hook reacts to the word under the cursor).
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-04-27Do not replace partially selected ranges in replace-ranges highlighterMaxime Coste
Partially selected ranges should not be replaced to make it possible to see what is actually selected.