Editing Tips & Tricks

Learn some of the most useful Editing features of GoLand.

Editing code is a frequent activity that programmers do. However, editing is not only about typing the code but also navigation in a code-base.

If IDEs are good at one thing, is that they can help automate various tasks, including writing that tedious boilerplate code.

In this playlist we're going to have a look at many of the code editing features in GoLand, and how to effectively use them.

Implement an interface

Implementing an interface is a common task that Go programmers need to do

GoLand offers the option to quickly implement an interface using the Implement methods action.

How to use:

^I (macOS) / Ctrl+I (Windows/Linux), and then select either to generate a new type or use an existing type from the current file.