Open mathvdd opened 3 weeks ago
In the end I just changed the function onBufferOpen(buf) to function onBufPaneOpen(bp) (9358a06bf7c5e39e36c78cb2800e80bf89682dac). Not sure what it changes exactly (where is the doc for this stuff?) but all works well except ... synctex. It only highlights the section where I am when I save
Could it be that I am missing some dependencies?
Hello,
The plugin is not working for me (micro 2.0.9). It looks like the problem comes from
isTex = (buf:FileType() == "tex")
in the functiononBufferOpen(buf)
that does not giveTrue
butunknown
.I did not find understandable doc for me on the buffer instance so I am unsure how to solve that. However, I could make the compilation on save part work by changing the
if isTex then
condition withif bp.Buf:FileType() == "tex" then
in theonSave(bp)
andpreSave(bp)
functions