Skip to content
This repository has been archived by the owner on Jul 15, 2023. It is now read-only.

Fixes #467: Adding goimports to list of tools to install. #470

Merged
merged 1 commit into from
Sep 15, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/goInstallTools.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ let tools: { [key: string]: string } = {
'go-outline': 'github.com/lukehoban/go-outline',
'go-symbols': 'github.com/newhook/go-symbols',
'guru': 'golang.org/x/tools/cmd/guru',
'gorename': 'golang.org/x/tools/cmd/gorename'
'gorename': 'golang.org/x/tools/cmd/gorename',
'goimports': 'golang.org/x/tools/cmd/goimports'
};

export function installAllTools() {
Expand Down