auto-fix-return.nvim
auto-fix-return.nvim copied to clipboard
Neovim plugin to automatically add or remove Go function return parenthesis while you are typing
doing DW, DIW, CW, and so on will make it so the parenthesis wraps around the input instead of letting you change the name, on some specific cases. refactoring via...
Right now attempting to do a higher order function declaration will fail to parse as the `func(` parse tree is too badly malformed. Example: ```go func Foo(f func(|) ``` When...
Right now you can backspace starting from the right side of the close parenthesis. The plugin should detect this attempt and instead pass the cursor through to the other side...
Though not commonly used Go allows return definitions that scale multiple lines ```go func foo() (int, string, error) { } ``` Right now these will break the formatter as it...
Hi, not sure if this is caused by my OS serving Treesitter with nvim, or if there is a bug in auto-fix… this is the error I get when starting....