In VSCode, how do you stop code that is running via the Code Runner extension?

GollyJer picture GollyJer · Sep 24, 2019 · Viewed 17.5k times · Source

I'm running a python flask server locally by clicking the run button in VSCode (provided by the Code Runner extension).

How do I stop the server without closing and restarting VSCode?

Answer

Mihai Chelaru picture Mihai Chelaru · Sep 24, 2019

From the Code Runner extension marketplace page, you have the following options:

To stop the running code:

  • use shortcut Ctrl + Alt + M
  • or press F1 and then select/type Stop Code Run
  • or right click the Output Channel and then click Stop Code Run in context menu

YMMV with the Ctrl + Alt + M shortcut, which does not work for me for some reason.