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
IDE name and version: IntelliJ IDEA Ultimate 2017.1
Java version: JDK8
OS name and version: Win10
What are you trying to do?
Writing: http.HandleFunc("/hello", <cursor here>)
Pressing CRTL-SPACE for and selecting the first entry func
following is inserted: func() {}
What would you expect to happen?
Following should be inserted: func(w http.ResponseWriter, r *http.Request) {}
Of course the param names can be typed in by the user.
But since the signature is known it should not be a problem to insert the correct function signature.
Or am I doing something wrong?
The text was updated successfully, but these errors were encountered:
Plugin version (or commit hash): 0.171.1931
IDE name and version: IntelliJ IDEA Ultimate 2017.1
Java version: JDK8
OS name and version: Win10
What are you trying to do?
http.HandleFunc("/hello", <cursor here>)
func
func() {}
Following should be inserted:
func(w http.ResponseWriter, r *http.Request) {}
Of course the param names can be typed in by the user.
But since the signature is known it should not be a problem to insert the correct function signature.
Or am I doing something wrong?
The text was updated successfully, but these errors were encountered: