diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-09-20 11:00:59 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-10-07 10:11:12 -0400 |
commit | f24e0fc233950f9ac5ab6b4ac5653a278cae0383 (patch) | |
tree | 48401bbf3cd7c26fa30ac87da1458486fc046b61 | |
parent | 4cce84b247b3a7fa2bfd52e49d4ff8e73b78481f (diff) |
marionette: Define keystrokes for typing colons and exclamation marks.
* gnu/build/marionette.scm (%qwerty-us-keystrokes): Register keystrokes for
the ':' and '!' characters.
-rw-r--r-- | gnu/build/marionette.scm | 2 |
1 files changed, 2 insertions, 0 deletions
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") |