I've been trying to get Sublime Text 2's build systems to work for me, but I can't get the console to show any output. The game runs correctly but no console. If I run my game manually by navigating to the directory and typing "love .", I get the output I'm looking for, so I'm certain it's a Sublime issue.
I found another thread with the same issue but there wasn't a solution found and I'm out of ideas. I'm using LOVE 0.9.2 and Sublime Text 2.0.2. I've tried "io.stdout:setvbuf("no")" but that didn't change anything. The funny part is, if I run a different command (for example echo) I get the correct output in Sublime, and if I put some gibberish command the right error message shows. It's only when I run LOVE that there's no output. Here's my sublime project:
Nixola wrote:Try setting t.console to false, or not setting it at all
Not setting it worked! Thank you!
Actually, now that I test it some more:
Setting it to false and not setting both act the same: I get console output in Sublime, but no console output if I run it from the command line. If I set it to true, I get console output when I run it via command line, but nothing in Sublime. I'd ideally like both, but I guess this works for now. Thanks again!