Skip to content

Commit

Permalink
Merge pull request theia-ide#26 from avelino/gosuggest-lint
Browse files Browse the repository at this point in the history
fixed lint on goSuggest
  • Loading branch information
svenefftinge authored Feb 20, 2019
2 parents f1bc165 + 8f64254 commit 375419e
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 @@ -200,7 +200,7 @@ export class GoCompletionItemProvider implements vscode.CompletionItemProvider {
let snippet = prefix + ' ${1:methodName}(${2}) ${3} \{\n\t$0\n\}';
// [TypeFox]
// auxItem.insertText = new vscode.SnippetString(snippet);
auxItem.insertText =snippet;
auxItem.insertText = snippet;
auxItem.insertTextFormat = vscode.InsertTextFormat.Snippet;
suggestions.push(auxItem);
}
Expand Down

0 comments on commit 375419e

Please sign in to comment.