auto-fix-return.nvim icon indicating copy to clipboard operation
auto-fix-return.nvim copied to clipboard

Neovim plugin to automatically add or remove Go function return parenthesis while you are typing

Results 5 auto-fix-return.nvim issues
Sort by recently updated
recently updated
newest added

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

bug

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

bug
enhancement

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

enhancement

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

enhancement

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