Multiple cites are put in one \cite{}. Correct bibtex ref
If you select multiple papers at once, they are put in the same cite bracket (comma separated). "/" is substituted out of the id. Since this also happens for the bibtex refs.
This commit is contained in:
parent
14d893d010
commit
023cdd322a
@ -26,14 +26,11 @@ function! s:handler(a)
|
||||
let candidates = []
|
||||
for line in citations
|
||||
let id = matchlist(line, pat)[1]
|
||||
call add(candidates, "\\cite{". id . "}")
|
||||
call add(candidates, substitute(id, "/", "", "g"))
|
||||
endfor
|
||||
endif
|
||||
|
||||
for candidate in candidates
|
||||
execute join([cmd, candidate])
|
||||
endfor
|
||||
|
||||
execute "normal a\\cite{" . join(candidates, ", ") . "}\egql"
|
||||
endfunction
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user