Let's say that I run a process in the foreground, I then wish to pause it, and maybe assign it to the background. In normal C-shell, it is very easily done. I just press C-z
, and then I input the command bg &
. How can I achieve the same in emacs shell-mode?
Asked
Active
Viewed 1,225 times
6

Dan
- 32,584
- 6
- 98
- 168

user1134991
- 289
- 1
- 9
1 Answers
7
C-cC-z, which runs comint-stop-subjob
, is the shell-mode
equivalent.
Use C-hm from your shell buffer to see other bindings on that prefix which may be of interest.

phils
- 48,657
- 3
- 76
- 115
-
This should be marked as the right question. Take my vote up, @phils. – Arialdo Martini Dec 03 '18 at 16:54