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

remove black space after auto completed brackets #628

Merged
merged 1 commit into from
Nov 21, 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
2 changes: 1 addition & 1 deletion src/goSuggest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,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