We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Traceback:
Debugger entered--Lisp error: (wrong-type-argument number-or-marker-p nil) +(33 nil) (let* ((path (get-text-property (point) (quote elisp-refs-path))) (pos (get-text-property (point) (quote elisp-refs-start-pos))) (unindent (get-text-property (point) (quote elisp-refs-unindented))) (column-offset (current-column)) (target-offset (+ column-offset unindent)) (line-offset -1)) (if (null path) (progn (user-error "No match here"))) (save-excursion (while (equal pos (get-text-property (point) (quote elisp-refs-start-pos))) (forward-line -1) (setq line-offset (1+ line-offset)))) (find-file path) (goto-char pos) (forward-line line-offset) (beginning-of-line) (let ((i 0)) (while (< i target-offset) (if (looking-at " ") (setq i (+ i tab-width)) (setq i (1+ i))) (forward-char 1)))) elisp-refs-visit-match() funcall-interactively(elisp-refs-visit-match) call-interactively(elisp-refs-visit-match nil nil) command-execute(elisp-refs-visit-match)
This seems to only occur when the last character in the line is not part of the highlighted sexp, e.g. (searching-for-this-func 1 2))))
(searching-for-this-func 1 2))))
The text was updated successfully, but these errors were encountered:
This is particularly noticeable with elisp-refs-symbol.
elisp-refs-symbol
Sorry, something went wrong.
No branches or pull requests
Traceback:
This seems to only occur when the last character in the line is not part of the highlighted sexp, e.g.
(searching-for-this-func 1 2))))
The text was updated successfully, but these errors were encountered: