diff options
| author | Laurențiu Nicola <lnicola@dend.ro> | 2024-03-12 14:44:35 +0200 |
|---|---|---|
| committer | Laurențiu Nicola <lnicola@dend.ro> | 2024-03-12 14:44:35 +0200 |
| commit | cb6c26ba82982f10e2fa4f76bcf0c549ca7f9762 (patch) | |
| tree | ba18d49166be6d1f99e81bd449ca63efcfef9241 | |
| parent | 03d2d9016d171c400f0891c867ea0aca9ec4f972 (diff) | |
| download | rust-cb6c26ba82982f10e2fa4f76bcf0c549ca7f9762.tar.gz rust-cb6c26ba82982f10e2fa4f76bcf0c549ca7f9762.zip | |
Don't auto-close block comments in strings
| -rw-r--r-- | editors/code/language-configuration.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/language-configuration.json b/editors/code/language-configuration.json index 1c348b63f1a..bdae0e6ba9b 100644 --- a/editors/code/language-configuration.json +++ b/editors/code/language-configuration.json @@ -18,7 +18,7 @@ { "open": "[", "close": "]" }, { "open": "(", "close": ")" }, { "open": "\"", "close": "\"", "notIn": ["string"] }, - { "open": "/*", "close": " */" }, + { "open": "/*", "close": " */", "notIn": ["string"] }, { "open": "`", "close": "`", "notIn": ["string"] } ], "autoCloseBefore": ";:.,=}])> \n\t", |
