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,584
  • 6
  • 98
  • 168
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
  • 48,657
  • 3
  • 76
  • 115