Domanda

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
È stato utile?

Soluzione

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'
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top