emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* [org-cite] request for coding help on a capf to insert citation key
@ 2021-06-05 16:13 Bruce D'Arcus
  2021-06-05 21:14 ` Bruce D'Arcus
  2021-06-21 14:16 ` Bruce D'Arcus
  0 siblings, 2 replies; 4+ messages in thread
From: Bruce D'Arcus @ 2021-06-05 16:13 UTC (permalink / raw)
  To: org-mode-email

[-- Attachment #1: Type: text/plain, Size: 1451 bytes --]

I've been struggling with this for a while, and am a mediocre programmer,
so thought I'd ask for help here.

I started out writing this generate capf to insert citation keys, but have
decided to make it specific to org-cite.

Here's the commented function.

TIA.

Note the "candidates" variable accesses a cached alist, of the form:

("long search string with title, author, etc." . "citekey")

So I want the user to be able to select on the car, but insert the cdr.


--8<---------------cut here---------------start------------->8---
(defun bibtex-actions-complete-key-at-point-oc ()
    "Complete org-cite citation key at point.

When inserting '@' in a buffer the capf UI will present user with
a list of entries, from which they can narrow against a string
which includes title, author, etc., and then select one.  This
function will then return the key 'key', resulting in '@key' at
point."
    ;; FIX exit-function is wrong; results in "no match"
    ;; TODO tighten this regex for org-cite
  (when (looking-back "@[a-zA-Z]+" 5)
    (let* ((candidates (bibtex-actions--get-candidates))
           (begin (save-excursion (backward-word) (point)))
           (end (point)))
      (list begin end candidates :exclusive 'no
            :exit-function
            (lambda (chosen status)
              (when (eq status 'finished)
                (cdr (assoc chosen candidates))))))))
--8<---------------cut here---------------end--------------->8---

[-- Attachment #2: Type: text/html, Size: 1827 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-06-21 14:18 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-05 16:13 [org-cite] request for coding help on a capf to insert citation key Bruce D'Arcus
2021-06-05 21:14 ` Bruce D'Arcus
2021-06-06 16:21   ` Bruce D'Arcus
2021-06-21 14:16 ` Bruce D'Arcus

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).