Created
July 30, 2020 19:10
-
-
Save nixpulvis/4773fd296fcce603d3a7481631e6d0db to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let highlights = execute('highlight') | |
let highlights = substitute(highlights, '\n\s\+', ' ', 'g') | |
let highlights = split(highlights, '\n') | |
call map(highlights, "split(v:val, '\\s\\+xxx\\s\\+')[0]") | |
for group in highlights | |
execute 'highlight' group 'NONE' | |
endfor |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment