6

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?

Dan
  • 32,980
  • 7
  • 102
  • 169
user1134991
  • 289
  • 1
  • 9

1 Answers1

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
  • 50,977
  • 3
  • 79
  • 122