-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
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
Rearview mirror #107
Comments
I think
What you described is likely to be an extension for xref (so it's not in the scope of Citre). |
I've create a little helper for you ;) (require 'citre-common-tag)
(require 'citre-ui-peek)
(defun peek-back-after-xref ()
(let* ((marker (caar (xref--get-history)))
(buf (marker-buffer marker))
tag)
(with-current-buffer buf
(save-excursion
(goto-char marker)
(setq tag (citre-make-tag-of-current-location
(if-let ((sym (symbol-at-point)))
(symbol-name sym) ".")))))
(citre-peek-show (list tag))))
(add-hook 'xref-after-jump-hook #'peek-back-after-xref) |
Thank you. It works. This is a great hint for me.
Maybe these are my homework. The rearview helps a code reader associate arguments seen in a function call and parameters in the function definition. |
For now all these aspects are controlled by global variables, or hard coded. So although the appearance you want is actually easy to implement, it's harder to adopt it in the current codebase. It's not clear to me how this fits into the
I think i've seen a somewhat similar work in a package called peek. |
The peek window is for forward-reading.
I wonder how useful if we can use it for backward-reading.
you are at an interesting function, "memmove":
you will do M-. to go to the definition:
you may wonder how the function is called. e.g. association between the arguments in the caller context and the parameter in the callee context.
turn on the rearview mirror:
You don't have to break the reading-context with M-,.
Just an idea.
The text was updated successfully, but these errors were encountered: