atom-latextools icon indicating copy to clipboard operation
atom-latextools copied to clipboard

Trigger build on save

Open adavidzh opened this issue 7 years ago • 1 comments

This is a great package that I use a lot. I was wondering how to enhance it in order to trigger the build whenever a relevant file is saved. Possibly following something like https://github.com/noseglid/atom-build/pull/33/files#diff-26b681bd4dac10f25d5293c7595c435b

adavidzh avatar Mar 21 '17 10:03 adavidzh

Hi. I also want the same feature. Currently I'm using a workaround by running a script:

while true; do
    inotifywait -e modify a1.tex
    timeout 15s pdflatex a1.tex
    sleep 1
done

recolic avatar May 06 '22 16:05 recolic