Michael D. Hoyle

Results 31 comments of Michael D. Hoyle

That would work, but there's a couple different text sizes in use (So headings look like headings), and things like button height may need to adjust with it. So all...

Yeah, you could have a setting to choose a size, and then have that setting determine which style to use when creating UI elements.

Sure, When I'm working on a web app, I have the main web server (rails) and a task runner (sidekiq) running in rails at the same time. Normally they'd be...

Just a bit of clarification - I'm pretty sure you can have more than one debug consoles at the same time, if you run more than one debugging session concurrently,...

I get the impression that multiple debug sessions of the same type are supposed to work, given the examples shown for [compound configurations](https://code.visualstudio.com/docs/editor/debugging#_compound-launch-configurations). But given @st0012 's comments about how...

Sounds like a great excuse to set up for contributing to the extension. If only I had the time...

I'm trying to see if the behaviour is still happening as reported, but I can't even get the debugger to run in my demo repo anymore: ![Screen Shot 2024-07-17 at...

Also I found this issue in the vscode repo https://github.com/microsoft/vscode/issues/178655 (though credit where it's due, others linked between a few other issues that allowed me to find it easily, I...

Alright cool. Maybe that's somehow been fixed then. I'll see if I can get the debugger working again with a fresh workspace to confirm. If it's still putting all the...

`server` or `schema` aren't globals, they're [parameters for `afterCreate` hooks](https://miragejs.com/docs/main-concepts/factories/#the-aftercreate-hook) in mirage factories or [route mock handlers](https://miragejs.com/docs/main-concepts/route-handlers/#accessing-the-data-layer). `this.server` only works in the test functions themselves, not the fixture factory or...