Skip to content

Commit 2c3191c

Browse files
committed
Fixes #453
1 parent c3e7a37 commit 2c3191c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lsp-ui-sideline.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -473,7 +473,7 @@ from the language server."
473473
(outside-comment (eq (nth 4 parsing-state) nil)))
474474
;; Skip strings and comments
475475
(when (and symbol (not in-string) outside-comment)
476-
(push (list symbol tag bounds (lsp--position (1- line-widen) (- (point) bol))) symbols))))
476+
(push (list symbol tag bounds (list :line (1- line-widen) :character (- (point) bol))) symbols))))
477477
(seq-do #'lsp--cancel-request lsp-ui-sideline--requests)
478478
(dolist (ov lsp-ui-sideline--ovs)
479479
(when (eq (overlay-get ov 'kind) 'info)

0 commit comments

Comments
 (0)