X-Git-Url: https://git.donarmstrong.com/?p=org-ref.git;a=blobdiff_plain;f=org-ref.org;h=7f13af029ba26b9c2fa80fe4fbcb97499bacb40d;hp=d4dc2a40f5f0169b1067a2e72e79af7983b52910;hb=9bed4a60882b93922d60110605ed9ce0de5e9e0b;hpb=21fc32b8c8386af4562833b9be6521ec3af69865 diff --git a/org-ref.org b/org-ref.org index d4dc2a4..7f13af0 100644 --- a/org-ref.org +++ b/org-ref.org @@ -2716,8 +2716,8 @@ ref:test citep:test label:rett (interactive) (let* ((object (org-element-context)) (type (org-element-property :type object))) - - (cond + (save-excursion + (cond ;; cite links ((-contains? org-ref-cite-types type) (message (org-ref-get-citation-string-at-point))) @@ -2727,6 +2727,10 @@ ref:test citep:test label:rett (message (org-ref-get-label-context (org-element-property :path object)))) + ((string= type "eqref") + (message (org-ref-get-label-context + (org-element-property :path object)))) + ;; message the count ((string= type "label") (let ((count (org-ref-count-labels @@ -2737,7 +2741,7 @@ ref:test citep:test label:rett " occurence" (when (or (= count 0) (> count 1)) - "s")))))))) + "s"))))))))) (when org-ref-show-citation-on-enter @@ -2818,12 +2822,15 @@ Technically, this function should return a string that is inserted by helm. This (t (insert (concat (if helm-current-prefix-arg + (helm :sources `((name . "link types") + (candidates . ,org-ref-cite-types) + (action . (lambda (x) x)))) (ido-completing-read "Type: " org-ref-cite-types) org-ref-default-citation-link) ":" (s-join "," keys)))))) -;; return empty string for helm -"") + ;; return empty string for helm + "") (setq helm-bibtex-format-citation-functions '((org-mode . helm-bibtex-format-org-ref))) @@ -2879,12 +2886,12 @@ Checks for pdf and doi, and add appropriate functions." (when (string= doi "") (setq doi nil)) (when (string= url "") (setq url nil)) + ;; Conditional pdf functions (if (file-exists-p pdf-file) (add-to-list 'candidates '("Open pdf" . org-ref-open-pdf-at-point) - t - ) + t) (add-to-list 'candidates '("Try to get pdf" . (lambda () @@ -2900,6 +2907,7 @@ Checks for pdf and doi, and add appropriate functions." '("Open notes" . org-ref-open-notes-at-point) t) + ;; conditional url and doi functions (when (or url doi) (add-to-list 'candidates