I am running a Django server from my run configuration which translates to:
python manage.py runserver --noreload
The stop button in the error panel doesn't kill the process, so I usually run
pskill python
How do I add this to my Eclipse run configurations?
My solution was to create a python file named "pskill.py" containing:
And add it under "Python Run" in Run Configurations.