Ian
Ian
any updates on this?
just checked, it would seem that errorformat from `:compiler` is not applied in runtime.  probably just going to use the `:Make` overseer recipe with "on_output_quickfix" `errorfotmat` set to vim.o.efm
overseer config ```lua { "stevearc/overseer.nvim", cmd = { "OverseerOpen", "OverseerClose", "OverseerToggle", "OverseerSaveBundle", "OverseerLoadBundle", "OverseerDeleteBundle", "OverseerRunCmd", "OverseerRun", "OverseerInfo", "OverseerBuild", "OverseerQuickAction", "OverseerTaskAction ", "OverseerClearCache", }, opts = { task_list = { default_detail...
it seems that efm is set if using `:compiler! dotnet` ``` :comp[iler][!] {name} Set options to work with compiler {name}. Without the "!" options are set for the current buffer....
this only happens if using `:compiler` and not `:compiler!`. ``` :comp[iler][!] {name} Set options to work with compiler {name}. Without the "!" options are set for the current buffer. With...
to add context I did the following 1. `:compiler dotnet` 2. run `dotnet run` in overseer cmd 3. checked `:cope` the resulting quickfix list did not consume / show any...
> 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))...
just checked, didn't work. still uses global efm (default efm from `:comp gcc`) ~~tho efm is explicitly defined in `on_output_quickfix` errorformat~~ (*edit: set `{ "on_output_quickfix", errorformat = vim.o.efm }` in...
have removed errorformat and the problem still persists Program.cs ``` for (int i = 0; i < 10; i++) { Console.WriteLine("Hello, World!") } ``` Tests: 1. when using `:comp dotnet`...
from: https://github.com/oxalica/nil/blob/c8e8ce72442a164d89d3fdeaae0bcc405f8c015a/docs/code_actions.md - [ ] `add_to_top_level_lambda_param` Add an undefined name to the top-level lambda. ```nix { foo }: foo + bar ``` => ```nix { foo, bar }: foo +...