vscode-go v0.6.83 Release Notes

Release Date: 2018-06-15 // almost 6 years ago
    • Luis GG (@lggomez)

      • Support for Conditional Breakpoints when debugging. Feature Request 1720 implemented with PR 1721
      • Fix the watch feature in the debug panel that got introduced in the previous update. Fixes Bug 1714 with PR 1718
    • @ikedam

      • New setting go.alternateTools to provide alternate tools or alternate paths for the same tools used by the Go extension. Provide either absolute path or the name of the binary in GOPATH/bin, GOROOT/bin or PATH. Useful when you want to use wrapper script for the Go tools or versioned tools from https://gopkg.in. PR 1297. Some scenarios:
        • Map go to goapp when using App Engine Go
        • Map gometalinter to gometalinter.v2 if you want to use the stable version of the tool
    • Ramya Rao (@ramya-rao-a)

      • Support the new outline feature which is in preview. Bug 1725
      • Close gocode before updating and show appropriate message when failed to do so.