Setting defaultColorDecorators setting to false for languages that use # for start of comments (#233303)

adding default setting for default color decorators for some languages
pull/233317/head
Aiday Marlen Kyzy 2024-11-07 11:41:05 +01:00 committed by GitHub
parent 3d8a6051f3
commit b73c976b2a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 20 additions and 6 deletions

View File

@ -49,7 +49,8 @@
],
"configurationDefaults": {
"[coffeescript]": {
"diffEditor.ignoreTrimWhitespace": false
"diffEditor.ignoreTrimWhitespace": false,
"editor.defaultColorDecorators": false
}
}
},

View File

@ -50,6 +50,11 @@
"meta.embedded.inline.sql": "sql"
}
}
]
],
"configurationDefaults": {
"[julia]": {
"editor.defaultColorDecorators": false
}
}
}
}

View File

@ -49,7 +49,8 @@
],
"configurationDefaults": {
"[python]": {
"diffEditor.ignoreTrimWhitespace": false
"diffEditor.ignoreTrimWhitespace": false,
"editor.defaultColorDecorators": false
}
}
},

View File

@ -66,7 +66,12 @@
"scopeName": "source.ruby",
"path": "./syntaxes/ruby.tmLanguage.json"
}
]
],
"configurationDefaults": {
"[ruby]": {
"editor.defaultColorDecorators": false
}
}
},
"repository": {
"type": "git",

View File

@ -94,7 +94,8 @@
],
"configurationDefaults": {
"[shellscript]": {
"files.eol": "\n"
"files.eol": "\n",
"editor.defaultColorDecorators": false
}
}
},

View File

@ -67,7 +67,8 @@
"editor.insertSpaces": true,
"editor.tabSize": 2,
"editor.autoIndent": "advanced",
"diffEditor.ignoreTrimWhitespace": false
"diffEditor.ignoreTrimWhitespace": false,
"editor.defaultColorDecorators": false
},
"[dockercompose]": {
"editor.insertSpaces": true,