Greetings. Suppose I have two LaTeX files called main.tex and macro.tex in the same directory. Suppose macro.tex reads:
% !TeX root = main.tex
\newcommand{\hellohello}{\mathrm{hello}}
and it is included in main.tex:
\documentclass{article}
\input{macro.tex}
\begin{document}
...
\end{document}
An expected behavior is that when one starts to type \helloh... in main.tex, a completion should pop up. But the actual behavior is that no such completion is suggested by digestif. It seems that digestif does not find the commands defined in the included files.
Greetings. Suppose I have two LaTeX files called
main.texandmacro.texin the same directory. Supposemacro.texreads:and it is included in
main.tex:An expected behavior is that when one starts to type
\helloh...inmain.tex, a completion should pop up. But the actual behavior is that no such completion is suggested by digestif. It seems that digestif does not find the commands defined in the included files.