Sublime Forum

Sublime Text hanging when custom command is ran

#1

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.

0 Likes

#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

#3

Omg that was a dumb mistake. Thanks a lot :smiley:

0 Likes