vscode-error-lens icon indicating copy to clipboard operation
vscode-error-lens copied to clipboard

Feature Request: Option to have a gutter icon for HINT messages

Open mackans95 opened this issue 2 years ago • 1 comments
trafficstars

I'm loving this extension, it gives me such a good overview of all types of issues in my repos, however, i would love to be able to have a gutter icon for HINT messages aswell.

since there is a default icon for all other message types, i don't see why there wouldn't at least be an option to have one for the HINT message types also.

mackans95 avatar Dec 08 '22 10:12 mackans95

I don't know when I'm going to create new icons for hint diagnostics, but in the meantime you can set gutter icons to "circle" or "square" and specify 4 custom icons:

"errorLens.gutterIconSet": "square",
"errorLens.errorGutterIconPath": "C:\\temp\\error-light.svg",
"errorLens.warningGutterIconPath": "C:\\temp\\warning-light.svg",
"errorLens.infoGutterIconPath": "C:\\temp\\info-light.svg",
"errorLens.hintGutterIconPath": "C:\\temp\\Folder-Green.png",

Error/warning/info can be taken from error lens extension folder or from GitHub:

https://github.com/usernamehw/vscode-error-lens/tree/master/img/default

usernamehw avatar Jul 14 '23 08:07 usernamehw