emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: "Bruce D'Arcus" <bdarcus@gmail.com>
To: org-mode-email <emacs-orgmode@gnu.org>
Subject: Re: [org-cite] request for coding help on a capf to insert citation key
Date: Sat, 5 Jun 2021 17:14:06 -0400	[thread overview]
Message-ID: <CAF-FPGMA+pX=bC4dsM93bFYqrbS=SxvT4Xu8POVuJOOL0A52nA@mail.gmail.com> (raw)
In-Reply-To: <CAF-FPGNKumD+c0onD3bzp=DCt26B4RffXtZC6JsH2PVi2nb9tQ@mail.gmail.com>

Round 2, which should address the "regex" todo.

--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"
  (when (and (eq major-mode 'org-mode)
             (eq (car (org-element-context)) 'citation))
    (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---


  reply	other threads:[~2021-06-05 21:14 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
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 [this message]
2021-06-06 16:21   ` Bruce D'Arcus
2021-06-21 14:16 ` Bruce D'Arcus

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CAF-FPGMA+pX=bC4dsM93bFYqrbS=SxvT4Xu8POVuJOOL0A52nA@mail.gmail.com' \
    --to=bdarcus@gmail.com \
    --cc=emacs-orgmode@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).