与Visual Studio编辑器或Sublime中的默认值类似,我想使用control + scroll-wheel来改变字体大小/缩放级别,而不是控制加/减。我在用户或工作区偏好设置中没有看到任何选项。
答案 0 :(得分:153)
您可以编辑settings.json并添加以下行:
"editor.mouseWheelZoom": true
答案 1 :(得分:16)
在新版本中:
文件->首选项->设置->搜索“
mouse wheel zoom
”
答案 2 :(得分:1)
如果使用的是Autohotkey,则可以编写一个脚本,当使用 Ctrl 和 Ctrl + = 按住 Ctrl 键的同时向下滚动鼠标时,> Ctrl + -,如下所示:
#IfWinActive ahk_class Chrome_WidgetWin_1
^WheelUp::
Send ^{=}
return
^WheelDown::
Send ^{-}
return
答案 3 :(得分:1)
在视觉工作室代码中:
文件 -> 首选项 -> 设置 -> 搜索“鼠标滚轮缩放”然后勾选框
答案 4 :(得分:1)
File > Preferences > Settings
并搜索: mouseWheelZoom
或者,
CTRL + ,
或者,
edit settings.json
并在 {parthesis} 中添加以下行 "editor.mouseWheelZoom": true
setting.json
所有偏好{
"terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\wsl.exe",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"C_Cpp.updateChannel": "Insiders",
"terminal.integrated.shell.linux": "/bin/zsh",
"editor.fontFamily": "'Cascadia Code', Consolas, 'Courier New', monospace",
"editor.fontLigatures": true,
"editor.largeFileOptimizations": false,
"git.suggestSmartCommit": false,
"files.autoSave": "afterDelay",
"liveshare.audio.startCallOnShare": true,
"liveshare.presence": false,
"terminal.integrated.fontFamily": "MesloLGS NF",
"terminal.integrated.tabs.enabled": true,
"explorer.confirmDelete": false,
"tabnine.experimentalAutoImports": true,
"code-runner.runInTerminal": true,
"json.maxItemsComputed": 10000,
"quokka.darkTheme.error.decorationAttachmentRenderOptions": {
"border": null,
"borderColor": null,
"fontStyle": null,
"fontWeight": null,
"textDecoration": null,
"color": "#fe536a",
"backgroundColor": null,
"margin": "1.2em",
"width": null,
"height": null
},
"prettier.singleQuote": true,
"prettier.jsxSingleQuote": true,
"workbench.colorTheme": "Visual Studio Dark",
"workbench.iconTheme": "vscode-icons",
"editor.mouseWheelZoom": true
}
答案 5 :(得分:0)
主要问题是如何构建VSCode,使用Electron frame和Microsoft Monaco Editor,它是使用TypeScript和此类Web技术构建的。因此,VSCode的行为与浏览器窗口的行为完全相同 - 缩放整个应用程序,包括侧边栏等。
答案 6 :(得分:0)
在 Zoom only Text in Visual Studio Code 中回答
在 Mac 上,在按下命令键的同时,向上滑动两根手指可缩小。向下滑动放大。