auto-fix-return.nvim
auto-fix-return.nvim copied to clipboard
Support multiline return definitions
Though not commonly used Go allows return definitions that scale multiple lines
func foo() (int,
string,
error) {
}
Right now these will break the formatter as it does not handle row changes.