vala-lang / vala-vscode

Vala and Genie integration for Visual Studio Code/VSCodium/Code-OSS
MIT License
41 stars 9 forks source link

Add support for verbatim template strings #22

Open wszqkzqk opened 2 years ago

wszqkzqk commented 2 years ago

Verbatim template strings will be added to vala 0.58.0.

Example:

var b = 123456;
var c = 111111;
var a = @"""$b\$c\"""; // 123456\111111\
Prince781 commented 2 years ago

Requires updating the tm grammar file. Also needs to be supported in tree-sitter-vala. VLS will automatically support this as it uses libvala.