From c1124c2fecd8432313e7b73f4bb82c8fbdf357a0 Mon Sep 17 00:00:00 2001 From: Chr1s <32487758+Chr1sDev@users.noreply.github.com> Date: Fri, 22 Oct 2021 12:49:52 -0500 Subject: [PATCH] [Language Configuration] Fix commenting Changed line and block comments to `BTW` and `OBTW, TLDR` --- language-configuration.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/language-configuration.json b/language-configuration.json index aa25710..a6cee90 100644 --- a/language-configuration.json +++ b/language-configuration.json @@ -1,9 +1,9 @@ { "comments": { // symbol used for single line comment. Remove this entry if your language does not support line comments - "lineComment": "//", + "lineComment": "BTW", // symbols used for start and end a block comment. Remove this entry if your language does not support block comments - "blockComment": [ "/*", "*/" ] + "blockComment": [ "OBTW", "TLDR" ] }, // symbols used as brackets "brackets": [ @@ -27,4 +27,4 @@ ["\"", "\""], ["'", "'"] ] -} \ No newline at end of file +}