vim-go-syntax icon indicating copy to clipboard operation
vim-go-syntax copied to clipboard

Fix commas in multiline comma-separated field names

Open charlespascoe opened this issue 1 year ago • 0 comments

E.g.:

type Foo struct {
	A,
	B,
	C, D Foo
}

The commas after A and B won't be highlighted, but the comma after C will be.

Need to make sure that any changes won't break other syntax highlighting within struct types.

charlespascoe avatar Feb 23 '24 15:02 charlespascoe