Skip to content

Commit

Permalink
fix: pass markdown renderer
Browse files Browse the repository at this point in the history
  • Loading branch information
aminya committed Oct 6, 2020
1 parent b11cb02 commit 99a9e66
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/signature-help-manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ module.exports = class SignatureHelpManager {
this.unmountDataTip()

const grammar = editor.getGrammar().scopeName.toLowerCase()
const snippetHtml = await getSnippetHtml(signature.label, grammar)
const snippetHtml = await getSnippetHtml(signature.label, grammar, this.renderer)
let doc = null

if (parameter) {
Expand All @@ -267,7 +267,7 @@ module.exports = class SignatureHelpManager {
} else {
doc = ""
}
const documentationHtml = await getDocumentationHtml(doc, grammar)
const documentationHtml = await getDocumentationHtml(doc, grammar, this.renderer)
const signatureHelpView = new ViewContainer({
snippet: {
element: snippetHtml,
Expand Down

0 comments on commit 99a9e66

Please sign in to comment.