Steven Arcangeli
Steven Arcangeli
You _shouldn't_ need an Arduino IDE installation for this to work, but the last time I tested it (several years at this point), arduino-cli had some bugs with listing board...
Check out the [unique](https://github.com/stevearc/overseer.nvim/blob/master/doc/components.md#unique) component. If you add that to your tasks, it will do name-based deduplication
The log file appears to be truncated, because it should be showing you the `prettierd` command that it was running. You should find that in the logs and run it...
The provided config does not reproduce the issue for me. I see `Running healthchecks...` like usual. Any ideas for other ways to repro?
This is a cool use case! It should be possible by writing a custom strategy. The type definition of a strategy is here: https://github.com/stevearc/overseer.nvim/blob/fdcd46ce738ef342bce38e5433df004ebdab3a1a/lua/overseer/strategy/init.lua#L6-L14 You can browse that directory to...
If you want to submit a PR, all you'll need to do is add the query file, add a test file, and run tests with `make update_snapshots` and confirm that...
These are niche topics that I would actually want to steer the average user _away_ from. If someone wants to make a PR to add some docs under the "advanced...
The first two formats should both work. If not, it's possible there's a bug in the logic somewhere. As per #325, I won't be working on this but since it...
Sure, you just need to implement all the required methods. The type is defined here: https://github.com/stevearc/overseer.nvim/blob/a6dc0600f675f10b8840c61d3f9d72fdf8cf970c/lua/overseer/strategy/init.lua#L6-L14 You can look at the other strategies in that dir to see how they...
The strategy is passed in as a name and is loaded on this line: https://github.com/stevearc/overseer.nvim/blob/fdcd46ce738ef342bce38e5433df004ebdab3a1a/lua/overseer/strategy/init.lua#L44 This means that if your strategy is "mystrategy", we'll be calling `require("overseer.strategy.mystrategy")`. So you can...