I use multiline strings for SQL queries inside Python programs.
Is there a way to tell Vim to apply different highlighting rules inside them, possibly by using a --SQL marker?
|
I use multiline strings for SQL queries inside Python programs. Is there a way to tell Vim to apply different highlighting rules inside them, possibly by using a |
||||
|
|
|
I copy-pasted-changed from here:
Now every multiline triple-single-quote string gets the sql syntax. Triple-double-quoted strings are still plain. I've changed sqlpostgres.vim to give SQL nuances of green to differentiate the two languages, and it looks sweet in the 256 colors inkpot scheme. Also related: Vim:embedded syntax highligting |
||||
|
|
|
You can try the following option on your file : It gives both file type to your file, and should apply both syntax highlighting. If it works for you, you can add the following line to your
However, it does not really deal with conflict between the two highlight groups...So it could or could not work in your case. You could also create a function to quickly toggle the filetype of your open buffer :
|
||||
|