终端 "Select Default Profile" 不工作 - 没有显示任何类型的终端(内部或外部)
Terminal "Select Default Profile" does not work - no type of terminal is being shown (internal or external)
我是 运行 VS 代码
问题是终端“Select 默认配置文件”不起作用 - 未显示任何类型的终端(内部或外部)
我关注了这些文章steps/guidance
- https://code.visualstudio.com/docs/editor/integrated-terminal
- https://code.visualstudio.com/docs/supporting/troubleshoot-terminal-launch
我试过了
- 正在重新安装 VS Code
- 使用
terminal.integrated.shell.windows
设置(已弃用但受支持)
- 在 settings.json 文件中指定配置文件并且设置为默认值
- 删除了所有自定义终端设置
{
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"typescript.updateImportsOnFileMove.enabled": "always",
"editor.minimap.enabled": false,
"git.suggestSmartCommit": false,
"javascript.updateImportsOnFileMove.enabled": "always",
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"files.exclude": {
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true
},
}
我错过了什么,我该如何解决?
VS代码版本详情:
Version: 1.61.0 (system setup)
Commit: ee8c7def80afc00dd6e593ef12f37756d8f504ea
Date: 2021-10-07T18:13:09.652Z
Electron: 13.5.1
Chrome: 91.0.4472.164
Node.js: 14.16.0
V8: 9.1.269.39-electron.0
OS: Windows_NT x64 10.0.19043
使用以下设置文件并重新启动windows解决了问题
{
"editor.codeActionsOnSave": {
"source.fixAll.tslint": true,
"source.fixAll.eslint": true
},
"diffEditor.ignoreTrimWhitespace": true,
"typescript.updateImportsOnFileMove.enabled": "always",
"js/ts.implicitProjectConfig.experimentalDecorators": true,
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.formatOnType": true,
}
我是 运行 VS 代码
问题是终端“Select 默认配置文件”不起作用 - 未显示任何类型的终端(内部或外部)
我关注了这些文章steps/guidance
- https://code.visualstudio.com/docs/editor/integrated-terminal
- https://code.visualstudio.com/docs/supporting/troubleshoot-terminal-launch
我试过了
- 正在重新安装 VS Code
- 使用
terminal.integrated.shell.windows
设置(已弃用但受支持) - 在 settings.json 文件中指定配置文件并且设置为默认值
- 删除了所有自定义终端设置
{
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"typescript.updateImportsOnFileMove.enabled": "always",
"editor.minimap.enabled": false,
"git.suggestSmartCommit": false,
"javascript.updateImportsOnFileMove.enabled": "always",
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"files.exclude": {
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true
},
}
我错过了什么,我该如何解决?
VS代码版本详情:
Version: 1.61.0 (system setup)
Commit: ee8c7def80afc00dd6e593ef12f37756d8f504ea
Date: 2021-10-07T18:13:09.652Z
Electron: 13.5.1
Chrome: 91.0.4472.164
Node.js: 14.16.0
V8: 9.1.269.39-electron.0
OS: Windows_NT x64 10.0.19043
使用以下设置文件并重新启动windows解决了问题
{
"editor.codeActionsOnSave": {
"source.fixAll.tslint": true,
"source.fixAll.eslint": true
},
"diffEditor.ignoreTrimWhitespace": true,
"typescript.updateImportsOnFileMove.enabled": "always",
"js/ts.implicitProjectConfig.experimentalDecorators": true,
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.formatOnType": true,
}