apteryx pushed a commit to branch master
in repository guix.
commit f24e0fc233950f9ac5ab6b4ac5653a278cae0383
Author: Maxim Cournoyer <[email protected]>
AuthorDate: Tue Sep 20 11:00:59 2022 -0400
marionette: Define keystrokes for typing colons and exclamation marks.
* gnu/build/marionette.scm (%qwerty-us-keystrokes): Register keystrokes for
the ':' and '!' characters.
---
gnu/build/marionette.scm | 2 ++
1 file changed, 2 insertions(+)
diff --git a/gnu/build/marionette.scm b/gnu/build/marionette.scm
index 5f8a74717a..6f373f87b6 100644
--- a/gnu/build/marionette.scm
+++ b/gnu/build/marionette.scm
@@ -382,8 +382,10 @@ screen dump, which is relative to the current working
directory."
(#\> . "shift-dot")
(#\. . "dot")
(#\, . "comma")
+ (#\: . "shift-semicolon")
(#\; . "semicolon")
(#\' . "apostrophe")
+ (#\! . "shift-1")
(#\" . "shift-apostrophe")
(#\` . "grave_accent")
(#\bs . "backspace")