Question

Is there a way to load a syntax file depending of the contents of a variable? Something like this:

syntax include @CSYN "syntax/" + b:language + ".vim"
syntax region cSnip start="<" end=">" keepend contains=@CSYN
Était-ce utile?

La solution

Use :execute, and the string concatenation in Vimscript is with . not + (for more complex stuff, prefer printf()):

:execute 'syntax include @CSYN syntax/' . b:language . '.vim'
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top