We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8259572 commit b072fe5Copy full SHA for b072fe5
lsp-completion.el
@@ -482,9 +482,13 @@ The MARKERS and PREFIX value will be attached to each candidate."
482
((and (equal kind "markdown")
483
(not (string-match-p (regexp-quote detail?) value)))
484
485
- (lsp--render-string
486
- (concat "```\n" detail? "\n```\n---\n" value)
487
- kind)))))
+ (concat
+ (propertize detail? 'face 'fixed-pitch)
+ (lsp--render-string
488
489
+ "\n---\n"
490
+ value)
491
+ kind))))))
492
493
((and (stringp documentation?)
494
(not (string-match-p (regexp-quote detail?) documentation?)))
0 commit comments