]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/progmodes/xref.el: Change xref-file-name-display and xref-match face.
authorJuri Linkov <juri@linkov.net>
Fri, 2 Apr 2021 08:25:05 +0000 (11:25 +0300)
committerJuri Linkov <juri@linkov.net>
Fri, 2 Apr 2021 08:25:05 +0000 (11:25 +0300)
* lisp/progmodes/xref.el (xref-file-name-display): Change the default value
to 'project-relative' (bug#47012).
(xref-match)<face>: Inherit from 'match'.

lisp/progmodes/xref.el

index ea52befec57d71abcad68a7b2b3856ae5bf0c552..cada1f110929b63fd9bf3f5d5c6904d161d42d77 100644 (file)
@@ -103,7 +103,7 @@ This is typically the filename.")
 
 ;;;; Commonly needed location classes are defined here:
 
-(defcustom xref-file-name-display 'abs
+(defcustom xref-file-name-display 'project-relative
   "Style of file name display in *xref* buffers.
 
 If the value is the symbol `abs', the default, show the file names
@@ -521,7 +521,7 @@ If SELECT is non-nil, select the target window."
   "Face for displaying line numbers in the xref buffer."
   :version "27.1")
 
-(defface xref-match '((t :inherit highlight))
+(defface xref-match '((t :inherit match))
   "Face used to highlight matches in the xref buffer."
   :version "27.1")