phpactor.el icon indicating copy to clipboard operation
phpactor.el copied to clipboard

wip : xref backend experiment

Open kermorgant opened this issue 5 years ago • 2 comments

I wanted to see how it would behave.

~~attention, this is based on branch feature/phpactor-executable-defcustom-take2~~

kermorgant avatar Aug 07 '19 14:08 kermorgant

can be tested with such function

(defun mk/phpactor-xref ()
  "Activates xref backend using phpactor."
  (make-local-variable 'xref-prompt-for-identifier)
  (setq xref-prompt-for-identifier nil)
  (add-hook 'xref-backend-functions #'phpactor-xref-backend nil t))

kermorgant avatar Aug 11 '19 14:08 kermorgant

fixed 2 small thing regarding references but still need to make find-definition behave correctly

kermorgant avatar Aug 23 '19 05:08 kermorgant