-
Notifications
You must be signed in to change notification settings - Fork 60
More menu items
Tom Short edited this page Nov 6, 2021
·
1 revision
To see more menu items for Dance menus and other VS Code quick-pick menus, an easy option is to increase the default font size and then adjust the zoom to your taste. Here are options for settings.json
. This will make the editor text larger than the menu and sidebar text.
"editor.fontSize": 18,
"window.zoomLevel": -1,
Another option described here is to use the Customize UI extension. The following setting increases the height of the VS Code quick-pick menus. Depending on your monitor size, you may need to adjust the 1100px
setting for max-height
. That can also be changed to none
, but then scrolling won't work for menus longer than the screen height.
"customizeUI.stylesheet": {
".quick-input-widget > .quick-input-list > .monaco-list": "max-height: 1100px !important; height: auto;",
},