I am new to VScode so sorry if this is a silly question.
I am trying to configure VS-code to use command prompt instead of powershell while running/debugging. I tried the instructions at: The new way to configure default shell and argument commands in VSCode? but it doesn't seem to be working.
I have added
"terminal.integrated.profiles.windows": {
"Command Prompt": {
"path": [
"${env:windir}\\Sysnative\\cmd.exe",
"${env:windir}\\System32\\cmd.exe"
],
"args": [],
"icon": "terminal-cmd"
},
},
"terminal.integrated.defaultProfile.windows": "Command Prompt",
to the bottom of my settings.json file. However when I try to run a python file it still runs it in powershell:
Thanks in advance!