Render nbsp as space
* eldoc-box.el (eldoc-box--fontify-html): Add support for .
This commit is contained in:
parent
150ed26880
commit
41c2ac8b3b
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user