Bassam
Bassam

Reputation: 51

How to make border between 2 panels in VSCode permanently visible?

I want to make the border between panels permanently visible. At present, the border only becomes visible when I move my mouse over it.

Thanks!

(Red rectangle added for emphasis) Blue border, red highlighting added for emphasis

Upvotes: 3

Views: 1741

Answers (2)

Morris
Morris

Reputation: 1

There is no permanently activation of the boarder line as I know. But you can set the color of it. For example with: "sash.hoverBorder": "#8db08e"

Upvotes: 0

Dani
Dani

Reputation: 2036

https://github.com/microsoft/vscode/issues/135005

"workbench.colorCustomizations": {
    "[Default Dark+]": {
        "editorGroup.border": "#0000ff",
        "panel.border": "#0000ff",
        "sideBar.border": "#0000ff",
        "activityBar.border": "#0000ff",
        "titleBar.border": "#0000ff",
        "statusBar.border": "#0000ff"
    },
    "editorGroup.border": "#ff0000",
    "panel.border": "#ff0000",
    "sideBar.border": "#ff0000",
    "activityBar.border": "#ff0000",
    "titleBar.border": "#ff0000",
    "statusBar.border": "#ff0000"
},

Upvotes: 4

Related Questions