Problem Solving: Hide the right side of the title bar of a list of named VScode button button

First, the problem description (Describe)

As you install more and more plug-ins, button on the right side of the title bar VScode more and more, which seriously reduces the scope of the title bar shows the title. In fact, many times we replace these functions with shortcut keys, so there is no need to display this button in the title bar

Here Insert Picture Description

Second, the solution (Solution)

(1) is mounted in plug-in VScode Customize UI
(2) in the VScode settings.jsonfile, the following code is added

 "customizeUI.stylesheet": {
       ".editor-actions": "display: none !important;", // hide all buttons
   },

(3) to save the settings, refresh the window
Here Insert Picture Description
after (4) set successfully, the effect is as follows
Here Insert Picture Description
: If you only want to hide certain settings button, you can refer jrend answer

Third, the references (Reference)

Published 308 original articles · won praise 149 · Views 150,000 +

Guess you like

Origin blog.csdn.net/qq_43827595/article/details/104989230