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

Support multiline return definitions

Open Jay-Madden opened this issue 1 year ago • 0 comments

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.

Jay-Madden avatar Aug 18 '24 03:08 Jay-Madden