diff options
author | Ludovic Courtès <ludo@gnu.org> | 2020-02-21 15:04:17 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-02-22 00:45:42 +0100 |
commit | b6ec284fe8b67bba4b17aab98641a91a17658133 (patch) | |
tree | 5853f7458f0a3bde965a0c7d3329ceb00bc9cc2e | |
parent | 1708ed6e9d778795558ea4a2fd949270abd79797 (diff) | |
download | patches-b6ec284fe8b67bba4b17aab98641a91a17658133.tar patches-b6ec284fe8b67bba4b17aab98641a91a17658133.tar.gz |
marionette: Provide portable US-layout keystrokes for "<" and ">".
* gnu/build/marionette.scm (%qwerty-us-keystrokes): Use shit-comma and
shift-dot for #\< and #\> because the "less" key doesn't work the same
in "US intl." layouts.
-rw-r--r-- | gnu/build/marionette.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/build/marionette.scm b/gnu/build/marionette.scm index a9dbce538f..fe754cd147 100644 --- a/gnu/build/marionette.scm +++ b/gnu/build/marionette.scm @@ -317,8 +317,8 @@ PREDICATE, whichever comes first. Raise an error when TIMEOUT is exceeded." (#\( . "shift-9") (#\) . "shift-0") (#\/ . "slash") - (#\< . "less") - (#\> . "shift-less") + (#\< . "shift-comma") + (#\> . "shift-dot") (#\. . "dot") (#\, . "comma") (#\; . "semicolon") |