Ars*_*eer 5 visual-studio-code vscode-settings
在最新的 VS-Code 更新之后,选项卡功能更改为“焦点更改”,而不是添加空格或标识。我尝试更改每个设置,setting.json
但它不工作。这真的很烦人,因为我已经习惯了。任何帮助,将不胜感激。
{
"workbench.iconTheme": "material-icon-theme",
"editor.formatOnSave": true,
"prettier.singleQuote": true,
"workbench.startupEditor": "newUntitledFile",
"window.zoomLevel": 0,
"indenticator.hover.peekBack": 0,
"indenticator.hover.peekForward": 1,
"indenticator.inner.hover.peekBack": 0,
"indenticator.inner.hover.peekForward": 1,
"indenticator.inner.showHighlight": true,
"html.format.endWithNewline": true,
"javascript.implicitProjectConfig.experimentalDecorators": true,
"prettier.printWidth": 110,
"html.format.indentHandlebars": true,
"html.format.indentInnerHtml": true,
"liveServer.settings.AdvanceCustomBrowserCmdLine": "C:\\Program Files\\Firefox Developer Edition\\firefox.exe",
"prettier.jsxBracketSameLine": true,
"prettier.trailingComma": "es5",
"prettier.useTabs": true,
"angular2-switcher.openSideBySide": true,
"editor.foldingStrategy": "indentation",
"editor.mouseWheelZoom": true,
"[html]": {
"editor.defaultFormatter": "HookyQR.beautify"
},
"[less]": {
"editor.defaultFormatter": "michelemelluso.code-beautifier"
},
"workbench.statusBar.visible": true,
"workbench.activityBar.visible": true,
"editor.renderControlCharacters": false,
"editor.showFoldingControls": "always",
"editor.smoothScrolling": true,
"breadcrumbs.enabled": false,
"terminal.integrated.rendererType": "dom",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "HookyQR.beautify"
},
"terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\powershell.exe"
Run Code Online (Sandbox Code Playgroud)
}
这是我的设置文件。扩展设置与以前相同。
在命令面板中,使用Toggle Tab Key Moves Focus(从 1.36.0 开始,默认情况下为 Ctrl + M)在这些模式之间切换。
在云上备份 VS-Code 设置时,我发现(在C:\Users\[username]\AppData\Roaming\Code\User
>中keybindings.json
)该选项卡被分配为-tab
标记为move-focus
。它没有出现在 Vs-Code 的 UI 设置中。我不知道它来自哪里(在 VS-Code 的第二次更新之后):
{
"key": "tab",
"command": "-tab",
"when": "editorTextFocus && !editorReadonly && !editorTabMovesFocus"
}
Run Code Online (Sandbox Code Playgroud)
我刚刚把它删除了。它的工作原理与 相同DEFAULT
。
如果有人从任何地方遇到这个问题,请将此作为答案分享。谢谢。:)
归档时间: |
|
查看次数: |
1102 次 |
最近记录: |