diff --git a/extensions/bat/language-configuration.json b/extensions/bat/language-configuration.json index 2064cd941ca70c55f709f82fb9af3436d93eb7b4..2fb5445a34a471dedf79cb3fa2cae8d02fa1b4dc 100644 --- a/extensions/bat/language-configuration.json +++ b/extensions/bat/language-configuration.json @@ -11,8 +11,7 @@ ["{", "}"], ["[", "]"], ["(", ")"], - ["\"", "\""], - ["`", "`"] + ["\"", "\""] ], "surroundingPairs": [ ["{", "}"], diff --git a/extensions/python/language-configuration.json b/extensions/python/language-configuration.json index da6ac4711be0ab91abaee3f4748d8270db40d095..c2c4aabc862d34aaa4d42433e3aa20dd25319007 100644 --- a/extensions/python/language-configuration.json +++ b/extensions/python/language-configuration.json @@ -29,14 +29,16 @@ { "open": "f'", "close": "'", "notIn": ["string", "comment"] }, { "open": "F'", "close": "'", "notIn": ["string", "comment"] }, { "open": "b'", "close": "'", "notIn": ["string", "comment"] }, - { "open": "B'", "close": "'", "notIn": ["string", "comment"] } + { "open": "B'", "close": "'", "notIn": ["string", "comment"] }, + { "open": "`", "close": "`", "notIn": ["string"] } ], "surroundingPairs": [ ["{", "}"], ["[", "]"], ["(", ")"], ["\"", "\""], - ["'", "'"] + ["'", "'"], + ["`", "`"] ], "folding": { "offSide": true,