Closed danilort closed 2 years ago
I suggest adding the support to the VSCODE command for toggling comments ("Editor.action.commentLine"), which adds or removes line comments, pressing the appropriate key. https://code.visualstudio.com/api/language-extensions/language-configuration-guide#comment-toggling
{ "comments": { // symbol used for single line comment. Remove this entry if your language does not support line comments "lineComment": "//", } }
"languages": [ { "id": "qalc", "aliases": [ "Qalc" ], "extensions": [ ".qalc" ], "configuration": "./language-configuration.json" } ],
Added in Qalc 0.1.9
I suggest adding the support to the VSCODE command for toggling comments ("Editor.action.commentLine"), which adds or removes line comments, pressing the appropriate key. https://code.visualstudio.com/api/language-extensions/language-configuration-guide#comment-toggling
What to change
create language-configuration.json
modify package.json