vala-vscode icon indicating copy to clipboard operation
vala-vscode copied to clipboard

Add support for verbatim template strings

Open wszqkzqk opened this issue 3 years ago • 1 comments

Verbatim template strings will be added to vala 0.58.0.

Example:

var b = 123456;
var c = 111111;
var a = @"""$b\$c\"""; // 123456\111111\

wszqkzqk avatar Nov 18 '22 03:11 wszqkzqk

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

Prince781 avatar Nov 18 '22 04:11 Prince781