This commit is contained in:
Dirk Baeumer 2016-01-07 10:31:31 +01:00
parent 52ee0d69c0
commit 8b8c3ca711

View file

@ -125,7 +125,8 @@ function registerSupports(modeID: string, host: TypeScriptServiceClientHost, cli
{ open: '[', close: ']' },
{ open: '(', close: ')' },
{ open: '"', close: '"', notIn: ['string'] },
{ open: '\'', close: '\'', notIn: ['string', 'comment'] }
{ open: '\'', close: '\'', notIn: ['string', 'comment'] },
{ open: '`', close: '`', notIn: ['string', 'comment'] }
]
}
});