summaryrefslogtreecommitdiff
path: root/test/highlight/column/multi-columns/rc
AgeCommit message (Collapse)Author
2018-07-08Rename highlighters that used an underscore to use a dashMaxime Coste
For example `show_matching` is now `show-matching`.
2018-07-05Fix tests and required scripts to get back to green make testMaxime Coste
2017-10-28Move highlighters into ScopesMaxime Coste
That means we can now have highlighters active at global, buffer, and window scope. The add-highlighter and remove-highlighter syntax changed to take the parent path (scope/group/...) as a mandatory argument, superseeding the previous -group switch.
2017-10-12Refactor column highlighter to make it more robustMaxime Coste
Support arbitrary orders for column highlighters (it was previously failing when column highlighters were not applied in column order). Fix show_matching tab handling at the same time (horizontal scrolling, tab characters and show_matching were behaving badly). Window highlighting now runs user highlighters, then built-ins for each phases, instead of running all phases for user highlighters, then all phases for built-ins. We now consider unprintable character to be 1-column width as we know we will display them as "�". Fixes #1615 Fixes #1023