forked from Archive/PX4-Autopilot
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:
parent
3d22da9cbe
commit
72b898fbf6
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue