Skip to content
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

Add customizable hook for parsing reftex labels #14

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions company-reftex.el
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,12 @@ See `reftex-format-citation'."
:type '(choice (const :tag "Off" nil) integer)
:group 'company-reftex)

(defcustom company-reftex-parse-labels-hook '(reftex-parse-all)
"Hook to be run for parsing reftex labels."
:type 'hook
:options '(reftex-parse-all reftex-parse-one)
:group 'company-reftex)

(defcustom company-reftex-labels-regexp
(rx "\\"
;; List taken from `reftex-ref-style-alist'
Expand Down Expand Up @@ -225,8 +231,7 @@ For more information on COMMAND and ARG see `company-backends'."

(defun company-reftex-label-candidates (prefix)
"Find all label candidates matching PREFIX."
(reftex-access-scan-info)
(reftex-parse-all)
(run-hooks 'company-reftex-parse-labels-hook)
(cl-loop for entry in (symbol-value reftex-docstruct-symbol)
if (and (stringp (car entry)) (string-prefix-p prefix (car entry)))
collect
Expand Down