Setting defaultColorDecorators setting to false for languages that use # for start of comments (#233303)
adding default setting for default color decorators for some languagespull/233317/head
parent
3d8a6051f3
commit
b73c976b2a
|
@ -49,7 +49,8 @@
|
||||||
],
|
],
|
||||||
"configurationDefaults": {
|
"configurationDefaults": {
|
||||||
"[coffeescript]": {
|
"[coffeescript]": {
|
||||||
"diffEditor.ignoreTrimWhitespace": false
|
"diffEditor.ignoreTrimWhitespace": false,
|
||||||
|
"editor.defaultColorDecorators": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -50,6 +50,11 @@
|
||||||
"meta.embedded.inline.sql": "sql"
|
"meta.embedded.inline.sql": "sql"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"configurationDefaults": {
|
||||||
|
"[julia]": {
|
||||||
|
"editor.defaultColorDecorators": false
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -49,7 +49,8 @@
|
||||||
],
|
],
|
||||||
"configurationDefaults": {
|
"configurationDefaults": {
|
||||||
"[python]": {
|
"[python]": {
|
||||||
"diffEditor.ignoreTrimWhitespace": false
|
"diffEditor.ignoreTrimWhitespace": false,
|
||||||
|
"editor.defaultColorDecorators": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -66,7 +66,12 @@
|
||||||
"scopeName": "source.ruby",
|
"scopeName": "source.ruby",
|
||||||
"path": "./syntaxes/ruby.tmLanguage.json"
|
"path": "./syntaxes/ruby.tmLanguage.json"
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"configurationDefaults": {
|
||||||
|
"[ruby]": {
|
||||||
|
"editor.defaultColorDecorators": false
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
|
|
@ -94,7 +94,8 @@
|
||||||
],
|
],
|
||||||
"configurationDefaults": {
|
"configurationDefaults": {
|
||||||
"[shellscript]": {
|
"[shellscript]": {
|
||||||
"files.eol": "\n"
|
"files.eol": "\n",
|
||||||
|
"editor.defaultColorDecorators": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -67,7 +67,8 @@
|
||||||
"editor.insertSpaces": true,
|
"editor.insertSpaces": true,
|
||||||
"editor.tabSize": 2,
|
"editor.tabSize": 2,
|
||||||
"editor.autoIndent": "advanced",
|
"editor.autoIndent": "advanced",
|
||||||
"diffEditor.ignoreTrimWhitespace": false
|
"diffEditor.ignoreTrimWhitespace": false,
|
||||||
|
"editor.defaultColorDecorators": false
|
||||||
},
|
},
|
||||||
"[dockercompose]": {
|
"[dockercompose]": {
|
||||||
"editor.insertSpaces": true,
|
"editor.insertSpaces": true,
|
||||||
|
|
Loading…
Reference in New Issue