I tried bunch of settings, but I can’t find how to disable it.
2
I fixed it using the extension "Customize UI" in VSCode; add the following lines in settings.json:
"customizeUI.stylesheet": { ".monaco-list-row.focused": "outline: 0px !important", },
I don’t think there is any setting to disable that highlight directly. You will have to use workbench.colorCustomizations in your settings.json. You should review the Lists and trees section of theme colors: lists and trees
workbench.colorCustomizations
Lists and trees
{ "workbench.colorCustomizations": { "list.activeSelectionBackground": "#0000", // note 4 hex characters "list.inactiveSelectionBackground": "#0000" }
The fourth hex character in the color setting represents the opacity setting. So setting it to 0 means that setting has no effect.
0
Click here to cancel reply.
2
Answers
I fixed it using the extension "Customize UI" in VSCode; add the following lines in settings.json:
I don’t think there is any setting to disable that highlight directly. You will have to use
workbench.colorCustomizations
in your settings.json. You should review theLists and trees
section of theme colors: lists and treesThe fourth hex character in the color setting represents the opacity setting. So setting it to
0
means that setting has no effect.