Hello! I have this bit of code: https://pastebin.com/ra3qX1Da, which is a sublime text custom command that I can trigger with a hotkey. Now, notice how most of my code is commented out? Well that doesn’t prevent it from completely hanging Sublime Text when I run it.
Sublime Text hanging when custom command is ran
bschaaf
#2
Commands are blocking by nature. What’s likely happening is that your pdflatex subprocess isn’t completing (say it’s waiting for input) and you’ve asked it to wait until it completes.
0 Likes