Skip to content

Instantly share code, notes, and snippets.

@mrvdb
Created June 11, 2014 19:00
Show Gist options
  • Save mrvdb/c03a88b8bfed77b3a267 to your computer and use it in GitHub Desktop.
Save mrvdb/c03a88b8bfed77b3a267 to your computer and use it in GitHub Desktop.
(defun delete-process-interactive ()
(interactive)
(let ((pname (ido-completing-read "Process Name: "
(mapcar 'process-name (process-list)))))
(delete-process (get-process pname))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment