Travis Smith

Results 8 comments of Travis Smith
trafficstars

There isn't a replacement method for this plugin. It just provides suggestions, not any fixes for the items. I can't speak to interactions related to spellcheck though, is it the...

I understand your concern here! Can you describe your setup here a bit, so I can poke at limits a bit? I’m guessing there’s a rather sizable markdown file open...

I don't inherently know what content is code and what is text when it comes into the add-on. I have a couple of ideas I can play with, I might...

So I've poked at this a bit, and tokenization/syntax interface is not the same interface I interact with. When I get an event to do linting, I just get the...

Jace, first off I want to acknowledge this request. I’ve played with it a little bit and I’m not sure the best way to load external extensions without packaging them...

Saying that, I should add if there are common extensions to write-good I can just take them as a dependency and package them with vscode-write-good.

With v0.1.5, there's a `write-good.debounce-time-in-ms` configuration setting, which can reduce how often this runs. Dialing that number up will reduce the resources needed while typing.

We should be able to parse the Uri even with globs and with or without a schema. ``` final g = Uri.parse('*.google.com/*'); print('hello ${g}'); // hello *.google.com/* ``` Then you...