Steven Arcangeli

Results 326 comments of Steven Arcangeli

> 1. According to the treesitter [docs](https://neovim.io/doc/user/treesitter.html#LanguageTree%3Aparse()), if we pass false at this [place](https://github.com/stevearc/conform.nvim/blob/ad2b5ecd907128ed1b66b1cf4bed57902ef836ee/lua/conform/formatters/injected.lua#L153), it won't run injections. Maybe I'm wrong, but I have empty included_regions() output, and it solves...

Hmmm...you're right the queries in the upstream parser appear to get merged with the queries defined in nvim-treesitter. Based on that, I don't actually know what is causing the parse...

To me that sounds like the underlying injection query is incorrect. Is this a custom injection or is it part of nvim-treesitter? You might want to try iterating on it...

@C0deBr3ak3r is correct, the `formatters` table is the correct place to override. Note that setting `inherit = false` means that we will use the exact configuration you supply. If you...

My guess is you need ```lua args = { 'format', '--option', 'align_entries=true', '-' }, ``` As that final `-` in the arguments tells the command to use stdin/stdout for formatting....