Method-like Completion for Functions

Completion for searching for functions that accept parameters of a certain type.

Method-like completion for functions allows you to search for functions based on their first parameter.

Imagine you are new to Go and want to split a string.

You know that there must be a function for that, most likely it's called Split and accepts a string as the first argument, but you don't know the exact name of the function and its package.

Here's where method-like completion comes in handy, offering you a list of all suitable functions, automatically importing it upon selection.

Hold down the Ctrl key and press Space twice.

Related Resources

Basic Code Completion
Basic Code Completion
Code completion out-of-the-box that helps you get the job done.
Code completion in Evaluate Expression, Watches or Conditional Breakpoints
Code completion in Evaluate Expression, Watches or Conditional Breakpoints
The debugger also has extensive code completion capabilities.
Code Completion in Language Injections
Code Completion in Language Injections
See how to use code completion inside strings and other places.