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
If the citation has a format like this:
link-hint-open-link can only identify the =citation= as one link.
link-hint-open-link
However, if the cursor is on a different key, the open command will result in different things.
Condition 1:
Will open feynman2011feynman.
feynman2011feynman
Condition 2:
Will open hutchings2018surely.
hutchings2018surely
org-ref-next-key can identify the links in a finner level, so that would be a good starting point.
org-ref-next-key
The text was updated successfully, but these errors were encountered:
There is a function in org-ref-citation-link.el:
org-ref-citation-link.el
(defun org-ref-jump-to-visible-key () "Jump to a visible key with avy." (interactive) (avy-with avy-goto-key (avy-process (apply #'append (save-excursion (org-element-map (org-element-parse-buffer) 'link (lambda (c) (when (assoc (org-element-property :type c) org-ref-cite-types) (goto-char (org-element-property :begin c)) (let* ((path (org-element-property :path c)) (data (org-ref-parse-cite-path path)) (references (plist-get data :references))) (append (list (org-element-property :begin c)) (cl-loop for ref in references collect (progn (search-forward (plist-get ref :key)) (match-beginning 0))))))))))) (avy--style-fn avy-style)))
So, the user can have finner control over the Dropping Zone (DZ).
Sorry, something went wrong.
org-ref-jump-to-visible-key
No branches or pull requests
If the citation has a format like this:
link-hint-open-link
can only identify the =citation= as one link.However, if the cursor is on a different key, the open command will result in different things.
Condition 1:
Will open
feynman2011feynman
.Condition 2:
Will open
hutchings2018surely
.org-ref-next-key
can identify the links in a finner level, so thatwould be a good starting point.
The text was updated successfully, but these errors were encountered: