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
This was an oversight in #603 that needs to be fixed.
Not sure if this should be incorporated somehow, or where, but this adds the "N" prefix to candidates whose crossref has a note.
(defun citar-xref-notes () (let ((all-keys (mapcar (lambda (x) (nth 1 x)) citar--candidates-cache)) (note-keys (citar-file--keys-with-file-notes))) (remq nil (mapcar (lambda (key) (let* ((entry (citar--get-entry key)) (xref (citar--get-value "crossref" entry))) (when (member xref note-keys) key))) all-keys)))) (setq citar-keys-with-notes-functions '(citar-xref-notes citar-file--keys-with-file-notes))
(As an aside, is there a better way to get a list of all keys?)
Originally posted by @localauthor in #603 (comment)
The text was updated successfully, but these errors were encountered:
Add back crossref support for notes to candidates
7f58d7f
Fix emacs-citar#610
I think, @localauthor, that #628 will fix this.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
This was an oversight in #603 that needs to be fixed.
Not sure if this should be incorporated somehow, or where, but this adds the "N" prefix to candidates whose crossref has a note.
(As an aside, is there a better way to get a list of all keys?)
Originally posted by @localauthor in #603 (comment)
The text was updated successfully, but these errors were encountered: