Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Kill Process that is created from running a task

I am launching a task and it works great but its a task that stays running in the current shell. Is there anyway to kill this task from the editor when you are done?

like image 397
Dan Vega Avatar asked Oct 27 '15 15:10

Dan Vega


People also ask

What happens when you perform a kill on a process?

The kill command will kill a single process at a time with the given process ID. It will send a SIGTERM signal indicating to a process to stop. It waits for the program to run its shutdown routine. The -signal command can be used to specify a signal that isn't SIGTERM.


2 Answers

Try Ctrl+Shift+P, start typing term and the command palette will highlight "terminate running task", press Enter and you're done

like image 59
jonayreyes Avatar answered Oct 04 '22 04:10

jonayreyes


Not sure if you have tried.

  1. Press Ctrl+P.
  2. Type >task terminate.
like image 30
qxg Avatar answered Oct 04 '22 04:10

qxg