Open Friksel opened 4 years ago
I'm not sure if it's possible to achieve, because VSCode support only one gutter in the line, with its own handler, so click is processed by only one handler at the time.
BTW, you can try this plugin: https://marketplace.visualstudio.com/items?itemName=usernamehw.errorlens it provides the same functionality as mine with some additional features and has better customization (however breakpoint have an exactly the same issue there, but overall plugin might be more interesting to you)
@PinkaminaDianePie No need to tryout another plugin, I like yours just fine! It's obviously not a big issue, but I thought this might be an easy one to fix which would be nice. Guess it's not that easy. No worries. Thanks for the quick response and keep up the great work!
First of all; great plugin. It seems like a little change to have a visible icon in the gutter instead of the problem tab, but it's way easier now to spot issues!
It's currently not possible to add a breakpoint by clicking in the gutter, when there is a error-gutters-symbol there. It does work with the F9 shortcut though, but it would be nice if just clicking in the gutter like we use to works too.
Sometimes errors aren't errors, but more like warnings how things could be better, like example below on line 141, where we just want to add a breakpoint on them to see a value for example.
I never created plugins for VS Code, but as VS Code is based on Chromium my guess would be that
pointer-events: none;
on the icons css could be a fix?