VSCode hide top-right icons

后端 未结 6 1826
陌清茗
陌清茗 2020-12-05 18:43

I\'m a big fan of VScode\'s minimalist approach, but one thing is bugging me. I would like to hide editor-tab icons.

The icons are from extensions: gi

6条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-05 19:05

    Building on @teraoka's answer, you might like to keep a script to do this since the setting will revert each time VSCode updates itself

    Using a Git-bash / cygwin:

    #!/bin/bash
    
    cd /c/Users/noel/appdata/local/Programs/Microsoft\ VS\ Code/resources/app/out/vs/workbench/
    cp workbench.desktop.main.css workbench.desktop.main.css.`date +%Y%m%d%H%M`
    echo ".editor-actions { display: none }" >> workbench.desktop.main.css
    

提交回复
热议问题