DA.
DA.

Reputation: 40691

How to kill server via terminal in VS Code?

Our local Macs are set up to run our local server via grep serve

When running from standard terminal, that command builds the project then spins up the local server. To kill it, I can use the break command (command-.).

We're doing a lot more in VS Code now which has the great feature of Terminal built in. However, it appears the command-. doesn't apply to that version of the terminal. So I'm at a bit of a loss...how does one stop the server via the terminal in VS Code?

Upvotes: 1

Views: 5437

Answers (1)

helloitsjoe
helloitsjoe

Reputation: 6529

Crtl+c should kill the currently running process in your terminal (VSCode or otherwise).

Upvotes: 1

Related Questions