Steven Arcangeli

Results 451 comments of Steven Arcangeli

I cannot reproduce this problem. I'm also confused because in your report you have the lines ``` on_output_quickfix (Set all task output into the quickfix (on complete)) errorformat: %E%f(%l\,%c): %trror...

In that case, the change that I just made might fix the issue you were having with the efm not being picked up by tasks.json

I wouldn't expect it to work if you use `{ "on_output_quickfix", errorformat = vim.o.efm }` in component_aliases, because it will be resolved whenever `config` is imported and never updated. Have...

I can't find anything obviously wrong anymore; this is going to take more investigation. Filing this as a P1 (would like to work on it, but given my current support...

I've added support for defining template params as a function. It is not async though, so all i/o operations must be blocking.

It would be nice if there were a way to do this. They way I've handled it thus far is by adding a `dir` condition (seen here: https://github.com/stevearc/overseer.nvim/blob/master/doc/recipes.md#directory-local-tasks-with-exrc) One note:...

Presumably when you use `:OverseerRun` and select the task from the list you would be fine with it running, correct? It sounds like the main situation where you don't want...

I added a config option to disable autostart when loading tasks from a bundle. It also applies to the `resession.nvim` plugin. LMK if this solves your problem

> It's not possible, AFAIK, to create a task without also immediately running it Only sort of true. It's true that if you use `:OverseerRun` the task is going to...

So you're asking about customizing the behavior of individual tasks that are defined in the `tasks.json` file. The way to do this would be with template hooks. For example, for...