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