Visual Studio Code change font size for file explorer tray?

前端 未结 10 1942
青春惊慌失措
青春惊慌失措 2021-01-31 01:11

How do I change the font size for the file explorer in Visual Studio Code? There is not an option in the settings.json file.

10条回答
  •  不要未来只要你来
    2021-01-31 01:17

    I'm visually impaired and I had the same problem, my solution was

    1. "Zoom Out" until I achieved my desired Explorer size (CTRL-), everything will be zoomed out.

    2. Edit the settings.json and change the "fontSize" to 20 as reflected in my settings.json.

    {
        "window.zoomLevel": 0,
        "editor.fontSize": 20,
        "php.validate.executablePath": "C:/apps/php 7.0.14/php.exe"
    }
    

提交回复
热议问题