msprev / fzf-bibtex

a BibTeX source for fzf
BSD 3-Clause "New" or "Revised" License
129 stars 15 forks source link

Fix formatting of authors field for more than two authors #20

Closed sdrave closed 4 years ago

sdrave commented 4 years ago

Slices in go are half-open intervals, so using sl[0:last-1] and sl[last] in abbrevAuthors will return all authors except the second-to-last.

This PR changes the behavior to return all authors.

msprev commented 4 years ago

Thank you -- this is a good catch!