Skip to content

Commit

Permalink
add number of results found
Browse files Browse the repository at this point in the history
  • Loading branch information
jkitchin committed Jan 17, 2024
1 parent 6fc62e6 commit fe6463c
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions openalex.el
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,10 @@ elisp:org-columns elisp:org-columns-quit
:DOI: ${doi}
:YEAR: ${publication_year}
:OPENALEX: ${id}
:END:" 'oa--replacer wrk))
:END:
Found ${(length entries)} results.
" 'oa--replacer wrk))
entries)))


Expand Down Expand Up @@ -397,7 +400,10 @@ elisp:org-columns elisp:org-columns-quit
:DOI: ${doi}
:YEAR: ${publication_year}
:OPENALEX: ${id}
:END:" 'oa--replacer wrk))
:END:
Found ${(length entries)} results.
" 'oa--replacer wrk))
entries)))


Expand Down Expand Up @@ -438,7 +444,11 @@ elisp:org-columns elisp:org-columns-quit
:DOI: ${doi}
:YEAR: ${publication_year}
:OPENALEX: ${id}
:END:\n\n" 'oa--replacer wrk))
:END:
Found ${(length entries)} results.
" 'oa--replacer wrk))
entries)))


Expand Down

0 comments on commit fe6463c

Please sign in to comment.