marionette: Augment the set of keystrokes.

* gnu/build/marionette.scm (%qwerty-us-keystrokes): Add ', ", and `.
master
Ludovic Courtès 2017-08-27 22:01:22 +02:00
parent 0a80981178
commit 06b8eae3d1
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 3 additions and 0 deletions

View File

@ -261,6 +261,9 @@ PREDICATE, whichever comes first. Raise an error when TIMEOUT is exceeded."
(#\. . "dot")
(#\, . "comma")
(#\; . "semicolon")
(#\' . "apostrophe")
(#\" . "shift-apostrophe")
(#\` . "grave_accent")
(#\bs . "backspace")
(#\tab . "tab")))