VS Code - 描述弹出窗口的大小

时间:2017-06-19 19:18:29

标签: window visual-studio-code vscode-extensions vscode-settings

我正在为VS Code创建一个带有长描述的片段。 我注意到VS Code中的描述弹出窗口有一个滚动条,但如果我可以放大窗口会更大吗?有可能吗?

3 个答案:

答案 0 :(得分:6)

不,目前不可能。有时文本甚至包含在这样的弹出窗口中,这使得难以阅读。当然需要改进的东西。

以下是一个例子:

enter image description here

答案 1 :(得分:2)

Custom CSS and JS Loader extension现在可以实现。


1。安装扩展程序

Custom CSS and JS Loader extension

2。设置权限

  • macOS
    • VS代码:sudo chown -R $(whoami) /Applications/Visual Studio Code.app/Contents/MacOS/Electron
    • VS Code Insiders:sudo chown -R $(whoami) /Applications/Visual Studio Code - Insiders.app/Contents/MacOS/Electron
  • Linux sudo chown -R $(whoami) /usr/share/code

3。创建CSS覆盖文件

touch ~/.vscode-custom.css

/* suggest-widget size */

.monaco-editor .suggest-widget.docs-side {
  width: 1000px;
}

.monaco-editor .suggest-widget.docs-side > .details {
  width: 60%;
  max-height: 800px !important;
}

.monaco-editor .suggest-widget.docs-side > .tree {
  width: 30%;
  float: left;
}

/* parameter-hints-widget */

.editor-widget.parameter-hints-widget.visible {
  max-height: 800px !important;
}

.monaco-editor .parameter-hints-widget > .wrapper {
  max-width: 1000px;
}

/* editor-hover */

.monaco-editor-hover .monaco-editor-hover-content {
  max-width: 1000px;
}

将CSS文件路径应用于settings.json

{
  "vscode_custom_css.imports": ["file:///Users/yourusername/.vscode-custom.css"],
  "vscode_custom_css.policy": true
}

4。重新启动VSCode

  • 重新启动VSCode
  • 忽略“ VSCode损坏错误_
    • 您可以选择永远压制这些
  • 运行命令“重新加载自定义CSS和JS”

答案 2 :(得分:0)

VSCode 1.51(2020年10月)应添加以下功能(部分):

Resizable suggestions

这个里程碑,我们对建议UI进行了一些改进。首先,它现在可以调整大小!拖动侧面或角落以调整控件的大小。

Resizable Suggestions control -- https://media.githubusercontent.com/media/microsoft/vscode-docs/vnext/release-notes/images/1_51/suggest-drag.gif

主题:GitHub Light,字体:FiraCode

建议列表的大小将在各个会话之间保存和恢复。
详细信息窗格的大小仅在每个会话中保存,因为该大小倾向于可变得多。
另外,editor.suggest.maxVisibleSuggestions设置已过时。

Jan M.中的the comments所述,这仅允许调整建议窗口的大小,而不是弹出窗口的大小
允许调整弹出窗口大小的功能尚未实现:
microsoft/vscode issue 14165:“功能请求:配置工具提示的最大宽度”。