I use CodeRunner on Mac which is a programming IDE for multiple programming languages, not Code Runner vor Visual Studio!
When I execute a program, inputs and outputs will be shown inside of this IDE, not in an external Terminal window.
The problem is when I set the cursor to a specific position on the screen, it will not be shown correctly. Only when I open a Terminal window and start the program from there, inputs and outputs will be shown at the right positions.
Is there a way to open an external Terminal window from CodeRunner directly and run the program there? It is ok when I have to close this window manually after the program finished.
Okay, so finally I solved this ! Steps : Open
Script Editor
app. Create new Script and paste this code :save this file inside the folder in which you are coding/ or provide path while executing. This will look like this :
I saved it in
/Users/aayush/Downloads
folder asautomated_run
. This script editor app will save this script asautomated_run.scpt
.Now open
Then open the script editor and see the
CodeRunner App
. SelectRun Settings...
, Now Copy the command written inRun Command
field before the$filename
. [For example, If I am coding in shell scripting then I will copy thebash
from the commandbash $filename
; for python, I will copypython3
frompython3 $filename
]line number 6
and paste your command in place of"bash "
. Here I am coding in shell scripting so that as per my requirement, I used 'bash ' here. Thenin CodeRunner
, Paste this code in place ofrun command
inRun Setting...
:It will look like this now :
Now you have two options : you can make this run command as default or you can use this as temporary. That is your choice.
now close this window.
and run any sample program to check this functionality which we just implemented.
Let's run sample program :
I made a sample file named 
helloaayush.sh
and stored that in/Users/aayush/Downloads
Now after pressing the
Run
button : A new terminal window will open and your code output will be visible there.Let me know if something is unclear :)