We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hey, thanks for the awesome plugin!
I started testing it recently, but I had difficulty using the context awareness in pandoc-like files.
After some debugging I am pretty sure this is the root: In telescope-bibtex.utils.parsePandoc we have this last for loop to get the bib filename.
telescope-bibtex.utils.parsePandoc
telescope-bibtex.nvim/lua/telescope-bibtex/utils.lua
Lines 206 to 217 in 289a6f8
but if bib file do not exist and rel_bibs exist. it should insert rel_bibs and not bib. In other words, it should insert found.
bib
rel_bibs
found
With this fix, it seems to work as intended and as it works in latex files.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Hey, thanks for the awesome plugin!
I started testing it recently, but I had difficulty using the context awareness in pandoc-like files.
After some debugging I am pretty sure this is the root:
In
telescope-bibtex.utils.parsePandoc
we have this last for loop to get the bib filename.telescope-bibtex.nvim/lua/telescope-bibtex/utils.lua
Lines 206 to 217 in 289a6f8
but if
bib
file do not exist andrel_bibs
exist. it should insertrel_bibs
and notbib
. In other words, it should insertfound
.With this fix, it seems to work as intended and as it works in latex files.
The text was updated successfully, but these errors were encountered: