Reputation: 619
I'm experimenting with Terminal Control Escape Sequences
in my java program that allows me two print a string at any x,y coordinate on my terminal. But I can't test this on intelliJ's terminal.
I've already seen solution on other thread where they say to copy the command from intelliJ's console and then paste it on system terminal to run it, but it is very tedious and also I've to build every time on intelliJ first, and then try it out on system terminal.
Is there a way to for intelliJ to open system terminal and run program when I press run shortcut?
Upvotes: 0
Views: 1844
Reputation: 401975
IntelliJ IDEA doesn't support it out of the box, see https://youtrack.jetbrains.com/issue/PY-19938 and the linked requests.
You can create an external tool that will spawn a Terminal window for your OS and start your app in this window. All the required macros for the paths/classes are available in the IDE.
Upvotes: 1