Steven Arcangeli

Results 451 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....

This is a very clear request and it's a feature that I would love to support! At the moment, I don't think there are...really any decent APIs for the fold...

`:mksession` encodes the folds with raw `normal! zc` commands. It would be a gross hack but I could technically do the same thing, except for the fact that I don't...

It does! I've moved the discussion of cursor position to a new issue, so we can separate it out. That's something I think I can address in the short-term, whereas...

Winbar is the recommended way to do this. If you're using a statusline plugin they probably have a way to configure the winbar, but with raw Neovim APIs you can...