Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents

Install GoGo 

Download and install go for your machine from https://golang.org/dl/


On Mac:

Mac OS - M1 - https://golang.org/dl/go1.17.3.darwin-arm64.pkg

Add it to your Path

Go installs itself in /usr/local/go/bin/go


Update your path to include $USER/go/bin


On Mac:

$ vi ~/.zshrcAdd the following to your .bashrc  or zshrc file

Code Block
export PATH="$PATH:$(go env GOPATH)/bin"

$ source ~/.zshrc


IntelliJ Integration

Install Go Plugin

In IntelliJ, click Preferences, Plugins and search for Go. Click Install.

Set Go Path and add go support to your module.GOTOOT and select the SDK or click + to add the recently installed version.

Also, you can add go support to a project module if if already exists.

Image Added

Add your $USER/go/bin to your go path

Image Added



Sync Dependencies

Image Added


Adding Interrupt Support in Debugging (Doesn't Work (sad))

  • Navigate to Preferences → Keymap
  • Scroll to Debugger Actions and find "Interrupt".
  • Right mouse click and select "Add Keyboard Shortcut"
  • Click the input box and hot CTRL-C on your keyboard.
  • Click OK 
  • Click Apply


Image AddedImage Removed