I am building a custom language extension, and am having issues with lineComment in language-configuration.json. My language, oddly, uses "@@" as a line Comment, and I cannot get this to work.
I have tried @@, @@, and so on.
Any tips?
(Updated from a comment):
This is the entirety of my language-configuration.json:
{
"comments": {
// single line comment
"lineComment": "@@"
},
// symbols used as brackets
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"]
],
"autoClosingPairs": [
["{", "}"],
["[", "]"],
["(", ")"]
],
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"]
] }