From 0b9725812e6b292193d8286968edfba6498f209c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcel=20St=C3=B6r?= Date: Fri, 20 May 2016 10:03:00 +0200 Subject: [PATCH] docs/wipy/tutorial: Add note about screen key bindings on OS X. --- docs/wipy/tutorial/repl.rst | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/docs/wipy/tutorial/repl.rst b/docs/wipy/tutorial/repl.rst index ef69d91445..e7b51f9c59 100644 --- a/docs/wipy/tutorial/repl.rst +++ b/docs/wipy/tutorial/repl.rst @@ -52,7 +52,12 @@ or:: $ screen /dev/tty.usbmodem* 115200 -When you are finished and want to exit screen, type CTRL-A CTRL-\\. +When you are finished and want to exit ``screen``, type CTRL-A CTRL-\\. If your keyboard does not have a \\-key (i.e. you need an obscure combination for \\ like ALT-SHIFT-7) you can remap the ``quit`` command: + +- create ``~/.screenrc`` +- add ``bind q quit`` + +This will allow you to quit ``screen`` by hitting CTRL-A Q. Linux -----