VS Code - 有没有办法让Minimap更大?

时间:2017-03-05 15:30:16

标签: visual-studio-code

我已使用以下代码在Visual Studio Code (VSCODE)中启用了MiniMap: "editor.minimap.enabled": true

但我可以把它做大吗?它在右边很小。

4 个答案:

答案 0 :(得分:4)

从vscode release 1.40.0

"editor.minimap.scale": 2,

答案 1 :(得分:3)

在设置中,您可以使用

设置宽度
// Limit the width of the minimap to render at most a certain number of columns
"editor.minimap.maxColumn": 120

答案 2 :(得分:2)

v1.43中有两个新的小地图设置:

const registrationUninstall = await registerWebhook({ address: `${HOST}/uninstalled`, topic: 'app/uninstalled', accessToken, shop, apiVersion: ApiVersion.October19 }); if (registrationUninstall.success) { console.log('Successfully registered uninstall webhook!'); } else { console.log('Failed to register uninstall webhook', registrationUninstall.result); } // This is the error i am getting while i am trying to register uninstalled app webhook:- Failed to register uninstall webhook { errors: [ { message: 'Parse error on "/" (error) at [3, 44]', locations: [Array] } ] }

值:Editor › Minimap: Sizeproportionalfit

来自https://github.com/microsoft/vscode-docs/blob/vnext/release-notes/v1_43.md#minimap-size

设置为fill(默认值)时,每行都会 小地图中的垂直空间量,具体取决于 proportional。例如,在高DPI监视器上, 配置的比例为1(默认值),则每行在 小地图。因此,对于100行的文件,渲染的行的高度 小地图中的像素为400像素,对于1000行的文件,像素为4000像素。 这意味着对于大文件,小地图也会滚动,因为 当前文件已滚动。

设置为editor.minimap.scale时,小地图的高度 不得大于编辑器高度。所以如果一个文件有 多行,它们将被采样,并且只有一个子集将被渲染 小地图,这样就无需滚动小地图。

设置为fit时,小地图的高度始终是编辑器 高度。对于大文件,也可以通过采样行来实现,但是 对于小文件,这是通过为以下文件保留更多垂直空间来实现的: 每行(拉伸行)。

此处大小从fill更改为proportional,然后在较小的文件中从fit更改为fit

minimap fill and fit

答案 3 :(得分:1)

还没有,但是拉取请求正在进行中https://github.com/microsoft/vscode/pull/82265