AlanQuatermain / go-tmbundle

A TextMate bundle for the Go programming language.
http://alanquatermain.net/
Other
127 stars 40 forks source link

Function head across lines is not recognized as a function #55

Closed philippfranke closed 5 months ago

philippfranke commented 9 years ago

The following examples will illustrate the issue because github uses your go-tmbundle for syntax highlighting:

One line function head:

func OneLiner(w io.Writer, r io.Reader) {}

Across lines function head:

func OneLiner(
  w io.Writer, 
  r io.Reader,
) {}