File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -986,6 +986,11 @@ must be used for handling a particular message.")
986
986
"Face used for highlighting symbols being written to."
987
987
:group 'lsp-mode)
988
988
989
+ (defface lsp-face-xref-items
990
+ '((t :inherit highlight))
991
+ "Face used for highlighting xref items."
992
+ :group 'lsp-mode)
993
+
989
994
(define-obsolete-variable-alias 'lsp-lens-auto-enable
990
995
'lsp-lens-enable "lsp-mode 7.0.1")
991
996
@@ -5039,7 +5044,7 @@ identifier and the position respectively."
5039
5044
(len (length line)))
5040
5045
(add-face-text-property (max (min start-char len) 0)
5041
5046
(max (min end-char len) 0)
5042
- 'highlight t line)
5047
+ 'lsp-face-xref-items t line)
5043
5048
;; LINE is nil when FILENAME is not being current visited by any buffer.
5044
5049
(xref-make (or line filename)
5045
5050
(xref-make-file-location
You can’t perform that action at this time.
0 commit comments