filNaj / tree-setter

A treesitter-module which will place equals, semicolons, commas and double points automatically for you!
122 stars 6 forks source link

feat(go): add equals after var name #6

Closed laureanray closed 1 year ago

laureanray commented 1 year ago

Add initial support for go #2

This works for simple variable declaration with initialization:

func main() {
  var a = 1
  //    ^- this would automatically be inserted
}