You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, firstly many thanks for your work!
I'm facing an issue that there will be no error diagnostics output when I set my output to a subdirectory.
It will work fine when I don't use a subdirectory.
First, create a tex file under an empty directory as
\documentclass[UTF8]{article}
\begin{document} %COMPILE ERROR
test
\end{document}
Then delete a character to make some error. For example, modify begin to bgin like following, and run texlab builtin "build" command. It will show up "build error" like below, but no error diagnostic is reported.
Besides, when I restart vscode at this time, I will be able to see the diagnostic error but it won't disappear after I correct it. I need to restart my vscode again then it will disappear.
I'm wondering is there any missing in my config? Thank you for your help!
The text was updated successfully, but these errors were encountered:
Build files are correctly produced in the build directory. However, errors and warnings do not get updated by texlab. But, when I restart vim I see the diagnostics from the previous build.
When no build directory is set, everything works fine 👍 .
I was able to reproduce the issue on my machine. The problem was caused by the file watching mechanism, which did not watch the output directory by default (one workaround would have been opening the aux file and rebuilding). This should be fixed with 1090831.
Hi, firstly many thanks for your work!
I'm facing an issue that there will be no error diagnostics output when I set my output to a subdirectory.
It will work fine when I don't use a subdirectory.
My vscode setting is below:
Here is the way to reproduce it.
First, create a tex file under an empty directory as
Then delete a character to make some error. For example, modify
begin
tobgin
like following, and run texlab builtin "build" command. It will show up "build error" like below, but no error diagnostic is reported.Besides, when I restart vscode at this time, I will be able to see the diagnostic error but it won't disappear after I correct it. I need to restart my vscode again then it will disappear.
I'm wondering is there any missing in my config? Thank you for your help!
The text was updated successfully, but these errors were encountered: