身体铅超标有什么危害
Tagged with original-vim syntax-highlighting
4 questions
0
votes
1
answer
85
views
How to color pairs of parentheses?
I am looking to color the parentheses in Python and other languages and the the tags in HTML. But the thing is, I want the parentheses at different levels to be colored differently.
Basically, I am ...
6
votes
2
answers
4k
views
How does VIM know to NOT interpret this .html file as html?
I've been working on an SGML/XML/HTML parser, and part of proof testing it is running through every last .html and .xml file on my system.
One file I came across was this:
vim "/var/lib/snapd/...
0
votes
1
answer
85
views
External syntax highlighting
Is there a way (even theoretical) for Vim to use an external program for syntax highlighting?
For instance a program that reads buffer content from stdin and prints single-character colour identifiers ...
1
vote
1
answer
195
views
Modify syntax highlighting dynamically
Is it possible to write a vim plugin that modifies buffer in real time? As a first step, would it for example be possible to modify syntax highlighting of unused variables as suggested in a similar ...