| 1 | // Ported from https://github.com/vuejs/language-tools/blob/master/extensions/vscode/languages/markdown-language-configuration.json |
| 2 | { |
| 3 | "autoClosingPairs": [ |
| 4 | // html |
| 5 | { |
| 6 | "open": "{", |
| 7 | "close": "}" |
| 8 | }, |
| 9 | { |
| 10 | "open": "[", |
| 11 | "close": "]" |
| 12 | }, |
| 13 | { |
| 14 | "open": "(", |
| 15 | "close": ")" |
| 16 | }, |
| 17 | { |
| 18 | "open": "'", |
| 19 | "close": "'" |
| 20 | }, |
| 21 | { |
| 22 | "open": "\"", |
| 23 | "close": "\"" |
| 24 | }, |
| 25 | { |
| 26 | "open": "<!--", |
| 27 | "close": "-->", |
| 28 | "notIn": [ |
| 29 | "comment", |
| 30 | "string" |
| 31 | ] |
| 32 | }, |
| 33 | // javascript |
| 34 | // commented to fix https://github.com/vuejs/language-tools/issues/1428 |
| 35 | // { |
| 36 | // "open": "`", |
| 37 | // "close": "`", |
| 38 | // "notIn": [ |
| 39 | // "string", |
| 40 | // "comment" |
| 41 | // ] |
| 42 | // }, |
| 43 | { |
| 44 | "open": "/**", |
| 45 | "close": " */", |
| 46 | "notIn": [ |
| 47 | "string" |
| 48 | ] |
| 49 | } |
| 50 | ], |
| 51 | "colorizedBracketPairs": [ |
| 52 | [ |
| 53 | "{{", |
| 54 | "}}" |
| 55 | ] |
| 56 | ] |
| 57 | } |
| 58 |