当试图输入ctrl序列时,我影响了屏幕显示

问题描述 投票:0回答:1

编码时,我点击了一些ctrl键,完全丢失了我的屏幕显示。字体大小必须是60px!从控制面板中删除了Vs代码并删除了settings.json。下载并安装最新的Vs代码。当Vs代码启动时,我开始输入值。删除前从已保存的settings.json文件中添加值。问题又回来了

通过控制面板删除了vscode程序,删除了settings.json。下载并安装最新版本的Windows 10 VSCode开始重新输入settings.json值。问题又回来了觉得这是一个UI问题?

{
"workbench.startupEditor": "newUntitledFile",
"workbench.iconTheme": "vscode-icons",
// Controls the font size in pixels.
"editor.fontSize": 8,
// Controls if the editor should automatically adjust the indentation when
// users type, paste or move lines. Indentation rules of the language must be
//  available.
"editor.autoIndent": true,
// The number of spaces a tab is equal to. This setting is overridden based
//  on the file contents when `editor.detectIndentation` is on.
"editor.detectIndentation": true,
"editor.insertSpaces": true,
"editor.tabSize": 4,
"editor.wordWrap": "on",
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"workbench.colorTheme": "Oceanic Next (dimmed bg)",
"editor.minimap.enabled": false,
"files.autoSave": "off",
"window.zoomLevel": 21,
"terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
"explorer.confirmDelete": false,
"vsicons.dontShowNewVersionMessage": true,
// Enable/disable built-in PHP validation.
"php.validate.enable": true,
// Points to the PHP executable.
"php.validate.executablePath": "C:/Program Files/PHP/php.exe",
"phpfmt.php_bin": "\"C:\\Program Files\\PHP\\php.exe\"",

}

试图包括几个屏幕转储,但无法弄清楚如何做到这一点。我最好将问题描述为试图在15英寸笔记本电脑显示器上显示60英寸电视屏幕。

vscode-settings
1个回答
0
投票

我有同样的问题。对我来说,这是settings.json中的这一行:

"window.zoomLevel": -1,

将其设置为以下解决了该问题:

"window.zoomLevel": 0,
© www.soinside.com 2019 - 2024. All rights reserved.