298
299
constructor() {
301
>
this._register(this.register(PLAINTEXT_LANGUAGE_ID, {
302
>
brackets: [
303
>
['(', ')'],
304
>
['[', ']'],
305
>
['{', '}'],
306
>
],
307
>
surroundingPairs: [
308
>
{ open: '{', close: '}' },
309
>
{ open: '[', close: ']' },
310
>
{ open: '(', close: ')' },
311
>
{ open: '<', close: '>' },
312
>
{ open: '\"', close: '\"' },
313
>
{ open: '\'', close: '\'' },
314
>
{ open: '`', close: '`' },
315
>
],
316
>
colorizedBracketPairs: [],
317
>
folding: {
318
>
offSide: true
319
>
}
320
>
}, 0));
321
>
}
322
323
/**