This repository has been archived by the owner on Jul 15, 2023. It is now read-only.
This repository has been archived by the owner on Jul 15, 2023. It is now read-only.
Method Suggestion #168
Closed
Description
When you write func in a package the suggestion list show also a method constructor for each type in the package that produces the following output:
func (p *PkgType) Method(){
}
Pressing tab should focus in order:
- the
*
to remove the pointer sign - the
Method
to change the name - In the parenthesis to change the argument
- After the parenthesis to change the return type
- In the method body
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment