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

Commit

Permalink
Fixes #529
Browse files Browse the repository at this point in the history
  • Loading branch information
ramya-rao-a committed Apr 16, 2017
1 parent 5794eaf commit 9d598ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/goSuggest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ export class GoCompletionItemProvider implements vscode.CompletionItemProvider {
}
// TODO: Shouldn't lib-path also be set?
private ensureGoCodeConfigured(): Thenable<void> {
let pkgPromise = listPackages(true).then((pkgs: string[]) => {
let pkgPromise = listPackages(false).then((pkgs: string[]) => {
this.pkgsList = pkgs.map(pkg => {
let index = pkg.lastIndexOf('/');
let pkgName = index === -1 ? pkg : pkg.substr(index + 1);
Expand Down

0 comments on commit 9d598ee

Please sign in to comment.