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
The commit 92d268a introduced a regression in the detection of packages that are included "recursively".
Consider the following minimal(!) example:
test.sty
\RequirePackage{cleveref}
test1.tex
\cref{foo}
test.tex
\documentclass{minimal} \usepackage{test} \begin{document} \include{test1} \end{document}
A similar issue occurs with packages loaded in a custom myclass.cls.
myclass.cls
pdflatex test.tex
nvim --clean -u minimal.vim test1.tex
Syntax highlighting for \cref.
\cref
No syntax highlighting for \cref.
N/A
VimTeX project: test base: test.tex root: /Users/clason tex: /Users/clason/test.tex main parser: recursive search document class: minimal packages: test source files: test.tex test1.tex compiler: latexmk engine: -pdf options: -verbose -file-line-error -synctex=1 -interaction=nonstopmode callback: 1 continuous: 1 executable: latexmk viewer: General qf method: LaTeX logfile
The text was updated successfully, but these errors were encountered:
fix: load packages from fls on init
8519d49
This fixes a regression from commit 92d268a. refer: #2170
Thanks! Should be fixed now.
Sorry, something went wrong.
No branches or pull requests
Description
The commit 92d268a introduced a regression in the detection of packages that are included "recursively".
Consider the following minimal(!) example:
test.sty
\RequirePackage{cleveref}
test1.tex
test.tex
A similar issue occurs with packages loaded in a custom
myclass.cls
.Steps to reproduce
pdflatex test.tex
nvim --clean -u minimal.vim test1.tex
(note: subfile!)Expected behavior
Syntax highlighting for
\cref
.Actual behavior
No syntax highlighting for
\cref
.Do you use a latexmkrc file?
N/A
VimtexInfo
The text was updated successfully, but these errors were encountered: