vscode-ebnf

EBNF for Visual Studio Code
Mirror of https://github.com/Jamozed/vscode-ebnf
git clone http://git.omkov.net/vscode-ebnf
Log | Tree | Refs | README | LICENCE | Download

vscode-ebnf/language-configuration.json (26 lines, 601 B) -rw-r--r-- blame download

012345678910111213141516171819202122232425
{
	"comments": {
		"blockComment": [ "(*", "*)" ]
	},
	"brackets": [
		[ "[", "]" ],
		[ "{", "}" ],
		[ "(", ")" ]
	],
	"autoClosingPairs": [
		{ "open": "[", "close": "]", "notIn": [ "comment" ] },
		{ "open": "{", "close": "}", "notIn": [ "comment" ] },
		{ "open": "(", "close": ")", "notIn": [ "comment" ] },
		{ "open": "'", "close": "'", "notIn": [ "comment" ] },
		{ "open": "\"", "close": "\"", "notIn": [ "comment" ] },
		{ "open": "(*", "close": "*)", "notIn": [ "comment" ] }
	],
	"surroundingPairs": [
		[ "[", "]" ],
		[ "{", "}" ],
		[ "(", ")" ],
		[ "'", "'" ],
		[ "\"", "\"" ]
	]
}