vscode minor settings update (#11978)

- minimap size and display
 - title bar show file path and if modified
 - disable natural language search (sends keystrokes to Bing)
This commit is contained in:
Daniel Agar 2019-05-06 16:37:43 -04:00 committed by GitHub
parent 3d22da9cbe
commit 72b898fbf6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 16 additions and 7 deletions

21
.vscode/settings.json vendored
View File

@ -1,8 +1,4 @@
{
"editor.insertSpaces": false,
"editor.tabSize": 8,
"editor.wordWrapColumn": 120,
"editor.suggest.localityBonus": true,
"astyle.astylerc": "${workspaceFolder}/Tools/astyle/astylerc",
"astyle.c.enable": true,
"astyle.cpp.enable": true,
@ -67,6 +63,17 @@
"C_Cpp.intelliSenseEngine": "Default",
"C_Cpp.intelliSenseEngineFallback": "Disabled",
"debug.toolBarLocation": "docked",
"editor.insertSpaces": false,
"editor.minimap.maxColumn": 120,
"editor.minimap.renderCharacters": false,
"editor.minimap.showSlider": "always",
"editor.smoothScrolling": true,
"editor.suggest.localityBonus": true,
"editor.tabSize": 8,
"editor.wordWrapColumn": 120,
"explorer.openEditors.visible": 0,
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"git.detectSubmodulesLimit": 20,
"files.associations": {
"*.jinja": "jinja"
@ -75,8 +82,10 @@
"build/**": true
},
"search.showLineNumbers": true,
"workbench.statusBar.feedback.visible": false,
"window.title": "${dirty} ${activeEditorMedium}${separator}${rootName}",
"workbench.editor.enablePreview": false,
"workbench.editor.enablePreviewFromQuickOpen": false,
"workbench.editor.highlightModifiedTabs": true
"workbench.editor.highlightModifiedTabs": true,
"workbench.settings.enableNaturalLanguageSearch": false,
"workbench.statusBar.feedback.visible": false
}