We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef1cb65 commit 3eca2aeCopy full SHA for 3eca2ae
eglot.el
@@ -2184,7 +2184,8 @@ MARKUP is either an LSP MarkedString or MarkupContent object."
2184
(cl-loop for from = (point) then to
2185
while (< from (point-max))
2186
for inv = (get-text-property from 'invisible)
2187
- for to = (next-single-property-change from 'invisible)
+ for to = (or (next-single-property-change from 'invisible)
2188
+ (point-max))
2189
when inv
2190
do (put-text-property from to 'invisible t)))
2191
(string-trim (buffer-string))))))
0 commit comments