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": {
|
||||
"[coffeescript]": {
|
||||
"diffEditor.ignoreTrimWhitespace": false
|
||||
"diffEditor.ignoreTrimWhitespace": false,
|
||||
"editor.defaultColorDecorators": false
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
|
@ -50,6 +50,11 @@
|
|||
"meta.embedded.inline.sql": "sql"
|
||||
}
|
||||
}
|
||||
]
|
||||
],
|
||||
"configurationDefaults": {
|
||||
"[julia]": {
|
||||
"editor.defaultColorDecorators": false
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -49,7 +49,8 @@
|
|||
],
|
||||
"configurationDefaults": {
|
||||
"[python]": {
|
||||
"diffEditor.ignoreTrimWhitespace": false
|
||||
"diffEditor.ignoreTrimWhitespace": false,
|
||||
"editor.defaultColorDecorators": false
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
|
@ -66,7 +66,12 @@
|
|||
"scopeName": "source.ruby",
|
||||
"path": "./syntaxes/ruby.tmLanguage.json"
|
||||
}
|
||||
]
|
||||
],
|
||||
"configurationDefaults": {
|
||||
"[ruby]": {
|
||||
"editor.defaultColorDecorators": false
|
||||
}
|
||||
}
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
|
|
@ -94,7 +94,8 @@
|
|||
],
|
||||
"configurationDefaults": {
|
||||
"[shellscript]": {
|
||||
"files.eol": "\n"
|
||||
"files.eol": "\n",
|
||||
"editor.defaultColorDecorators": false
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue