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 db58f24 commit 2678c4fCopy full SHA for 2678c4f
lsp-completion.el
@@ -486,9 +486,13 @@ The MARKERS and PREFIX value will be attached to each candidate."
486
((and (equal kind "markdown")
487
(not (string-match-p (regexp-quote detail?) value)))
488
489
- (lsp--render-string
490
- (concat "```\n" detail? "\n```\n---\n" value)
491
- kind)))))
+ (concat
+ (propertize detail? 'face 'fixed-pitch)
+ (lsp--render-string
492
493
+ "\n---\n"
494
+ value)
495
+ kind))))))
496
497
((and (stringp documentation?)
498
(not (string-match-p (regexp-quote detail?) documentation?)))
0 commit comments