You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It might be tricky to implement this in Go partially because of Go's variable declaration syntax.
For example:
package main
funcmain() {
vara=2// ^- we would ideally insert here// but what if we want something like thisvarresultint// ^- the moment we press space it would insert `=` automatically// which might be annoying if that's not what you want // var result =
}
If we used a query to match the first one, it would be annoying if we want to just declare a variable (without initializing)
No description provided.
The text was updated successfully, but these errors were encountered: