-
-
Notifications
You must be signed in to change notification settings - Fork 795
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Serial Monitor: Exit key combination doesn't work on international keyboards #386
Comments
You can override exit key. See http://docs.platformio.org/en/latest/userguide/cmd_serialports.html#cmdoption-platformio-serialports-monitor--exit-char |
That will send the exit char but won't quit the app itself, right? Can't platformio use an universal key combination like Ctrl + Q? |
Universal for what? No here "universal". You can configure own platformio serialports monitor --exit-char 93
--- Miniterm on /dev/cu.usbmodemFD1311: 9600,8,N,1 ---
--- Quit: ']' | Menu: Ctrl+T | Help: Ctrl+T followed by Ctrl+H ---
# to exit use Ctrl+C+]
platformio serialports monitor --exit-char 17
--- Miniterm on /dev/cu.usbmodemFD1311: 9600,8,N,1 ---
--- Quit: Ctrl+Q | Menu: Ctrl+T | Help: Ctrl+T followed by Ctrl+H ---
# to exit use Ctrl+Q If you specify DIRECT ASCII code (like Here is the table http://www.theasciicode.com.ar/ascii-printable-characters/box-brackets-square-brackets-closing-bracket-ascii-code-93.html Does it help you? |
I meant universal for all keyboards: the default you have now will work on keyboards where Ctrl + ] is a direct key combination (like the English keyboard) in others it won't work (nothing happens). In any case, using --exit-char works fine. I'd suggest adding the explanation above to the docs as this information is far from obvious. Thanks, you deserve many stars, this is an awesome project! Regards! |
Which Thanks! |
Ctrl + Q as you listed two posts ago: --exit-char 17 |
I've added to docs. What is interesting, that |
In Windows the platformio serialports monitor Exit key combination Ctrl + ] does not work on international keyboards where ] is produced by a combination of keys.
For example in the standard Portuguese keyboard (Portugal and probably Brazil and other variants also), the ] character is produced by pressing Alt Gr + 8. In this case Serial Monitor never exits and one has to press Ctrl + Break to kill the program.
The text was updated successfully, but these errors were encountered: