Trying to run telnet
in Emacs shell I cannot figure out how to send ^]
to terminate it.
Asked
Active
Viewed 234 times
1

wvxvw
- 11,222
- 2
- 30
- 55
-
I think you can terminate with `C-c C-c`. – caisah Jun 08 '16 at 13:08
-
@caisah nope, that doesn't work, neither does `C-c C-z`. – wvxvw Jun 08 '16 at 13:16
-
2You should be able to press `C-q C-]` – Jules Jun 08 '16 at 14:33
-
@JulesTamagnan and yes indeed. You can make it an answer, if you want. – wvxvw Jun 08 '16 at 15:37
1 Answers
4
You should be able to press C-q to run quoted-insert
to insert any key chord you want. So pressing C-q C-] will insert ^]
into the buffer instead of running the command bound to C-]

Jules
- 1,275
- 7
- 12