forked from colonelpanic/dotfiles
[Emacs] Override xref function AFTER xref loaded
This commit is contained in:
parent
d5e7f3d8ef
commit
3221c24383
@ -1140,7 +1140,9 @@ programming mode.
|
||||
#+END_SRC
|
||||
*** Handle xrefs annoying dedicated window garbage
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(defun xref--show-pos-in-buf (pos buf select)
|
||||
(use-package xref
|
||||
:config
|
||||
(defun xref--show-pos-in-buf (pos buf select)
|
||||
(let ((xref-buf (current-buffer))
|
||||
win)
|
||||
(with-selected-window
|
||||
@ -1152,7 +1154,7 @@ programming mode.
|
||||
(with-current-buffer xref-buf
|
||||
(setq-local other-window-scroll-buffer buf))))
|
||||
(when select
|
||||
(select-window win))))
|
||||
(select-window win)))))
|
||||
#+END_SRC
|
||||
*** display-buffer-alist
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
|
Loading…
Reference in New Issue
Block a user