在状态栏中隐藏通知铃声

时间:2019-04-24 10:06:57

标签: visual-studio-code

如何在Visual Studio代码右下方的状态栏中隐藏通知铃声图标。

我尝试搜索设置,但找不到任何内容。

3 个答案:

答案 0 :(得分:0)

根据此GitHub issue,无法取下铃铛。

如果要隐藏整个状态栏:

转到视图->外观->隐藏/显示状态栏以隐藏整个状态栏。

答案 1 :(得分:0)

正式-不。

使用此Custom CSS and JS Loader扩展名,您可以注入任何CSS

.statusbar-item[statusbar-entry-priority='-1000'] {
    display: none !important;
}

答案 2 :(得分:0)

我只想在没有通知时将其隐藏。就我而言,我使用了@Alex提到的the custom css and JS loaded plugin,但使用了这个CSS:

[title="No Notifications"] {
    display: none !important;
}
相关问题