We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26c0e58 commit 32ddf3eCopy full SHA for 32ddf3e
phpactor-xref.el
@@ -65,7 +65,7 @@ which is really sub optimal."
65
(xref-make (map-elt candidate 'file)
66
(xref-make-file-location (map-elt candidate 'file)
67
(map-elt candidate 'line)
68
- 0)))
+ (map-elt candidate 'col))))
69
70
(defun phpactor-xref--find-candidates ()
71
"Fetch references and return a list."
@@ -78,6 +78,7 @@ which is really sub optimal."
78
(when path
79
(push (list (cons 'file path)
80
(cons 'line (plist-get reference :line_no))
81
+ (cons 'col (plist-get reference :col_no))
82
;; (cons 'symbol symbol)
83
;; (cons 'match match)
84
)
0 commit comments