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

Commit

Permalink
Remove space after brackets in snippet as per #628
Browse files Browse the repository at this point in the history
  • Loading branch information
ramya-rao-a authored Nov 29, 2016
1 parent cb0d2bc commit 32a3923
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 @@ -189,7 +189,7 @@ export class GoCompletionItemProvider implements vscode.CompletionItemProvider {
paramSnippets.push('{{' + param + '}}');
}
}
item.insertText = suggest.name + '(' + paramSnippets.join(', ') + ') {{}}';
item.insertText = suggest.name + '(' + paramSnippets.join(', ') + '){{}}';
}
// Add same sortText to all suggestions from gocode so that they appear before the unimported packages
item.sortText = 'a';
Expand Down

0 comments on commit 32a3923

Please sign in to comment.