Reputation: 43
So basically I would like to know if I can make my current line in Visual Studio Code have a border like it does in Visual Studio 2017.
Upvotes: 4
Views: 3986
Reputation: 67513
settings.json Ctrl+,
"workbench.colorCustomizations": {
"editor.lineHighlightBorder": "#ffffff70"
}
Upvotes: 13