Path: blob/main/extensions/groovy/language-configuration.json
3290 views
{1"comments": {2"lineComment": "//",3"blockComment": [4"/*",5"*/"6]7},8"brackets": [9[10"{",11"}"12],13[14"[",15"]"16],17[18"(",19")"20]21],22"autoClosingPairs": [23[24"{",25"}"26],27[28"[",29"]"30],31[32"(",33")"34],35{36"open": "\"",37"close": "\"",38"notIn": [39"string"40]41},42{43"open": "'",44"close": "'",45"notIn": [46"string"47]48}49],50"surroundingPairs": [51[52"{",53"}"54],55[56"[",57"]"58],59[60"(",61")"62],63[64"\"",65"\""66],67[68"'",69"'"70]71],72"onEnterRules": [73// Add // when pressing enter from inside line comment74{75"beforeText": {76"pattern": "\/\/.*"77},78"afterText": {79"pattern": "^(?!\\s*$).+"80},81"action": {82"indent": "none",83"appendText": "// "84}85},86]87}888990