diff --git a/eldoc-box.el b/eldoc-box.el index 2b11a15..794106d 100644 --- a/eldoc-box.el +++ b/eldoc-box.el @@ -723,12 +723,13 @@ height." 'invisible t)) ;; Special entities. (goto-char (point-min)) - (while (re-search-forward (rx (or "<" ">")) nil t) + (while (re-search-forward (rx (or "<" ">" " ")) nil t) (put-text-property (match-beginning 0) (match-end 0) 'display (pcase (match-string 0) ("<" "<") - (">" ">")))))) + (">" ">") + (" " " ")))))) ;;;; Tab-bar compatibility