offside languages: changing ignoreTrimWhitespace default to false (#169555)

This commit is contained in:
Martin Aeschlimann
2022-12-20 10:09:56 +01:00
committed by GitHub
parent b2121c2dbe
commit 3eff2128ce
7 changed files with 34 additions and 7 deletions

View File

@@ -36,7 +36,12 @@
"scopeName": "source.clojure",
"path": "./syntaxes/clojure.tmLanguage.json"
}
]
],
"configurationDefaults": {
"[clojure]": {
"diffEditor.ignoreTrimWhitespace": false
}
}
},
"repository": {
"type": "git",

View File

@@ -45,7 +45,12 @@
"language": "coffeescript",
"path": "./snippets/coffeescript.code-snippets"
}
]
],
"configurationDefaults": {
"[coffeescript]": {
"diffEditor.ignoreTrimWhitespace": false
}
}
},
"repository": {
"type": "git",

View File

@@ -41,7 +41,12 @@
"language": "fsharp",
"path": "./snippets/fsharp.code-snippets"
}
]
],
"configurationDefaults": {
"[fsharp]": {
"diffEditor.ignoreTrimWhitespace": false
}
}
},
"repository": {
"type": "git",

View File

@@ -93,7 +93,8 @@
"configurationDefaults": {
"[markdown]": {
"editor.unicodeHighlight.ambiguousCharacters": false,
"editor.unicodeHighlight.invisibleCharacters": false
"editor.unicodeHighlight.invisibleCharacters": false,
"diffEditor.ignoreTrimWhitespace": false
}
}
},

View File

@@ -33,7 +33,12 @@
"scopeName": "text.pug",
"path": "./syntaxes/pug.tmLanguage.json"
}
]
],
"configurationDefaults": {
"[jade]": {
"diffEditor.ignoreTrimWhitespace": false
}
}
},
"repository": {
"type": "git",

View File

@@ -45,7 +45,12 @@
"scopeName": "source.regexp.python",
"path": "./syntaxes/MagicRegExp.tmLanguage.json"
}
]
],
"configurationDefaults": {
"[python]": {
"diffEditor.ignoreTrimWhitespace": false
}
}
},
"scripts": {
"update-grammar": "node ../node_modules/vscode-grammar-updater/bin MagicStack/MagicPython grammars/MagicPython.tmLanguage ./syntaxes/MagicPython.tmLanguage.json grammars/MagicRegExp.tmLanguage ./syntaxes/MagicRegExp.tmLanguage.json"

View File

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