civodul pushed a commit to branch master
in repository guix.
commit 604b167bf27d307c5bd30145b6486f90417d0d06
Author: Ludovic Courtès <[email protected]>
Date: Wed May 15 12:06:34 2019 +0200
marionette: Add braces to the keystrokes.
* gnu/build/marionette.scm (%qwerty-us-keystrokes): Add braces.
---
gnu/build/marionette.scm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/gnu/build/marionette.scm b/gnu/build/marionette.scm
index f94eab5..1dbe385 100644
--- a/gnu/build/marionette.scm
+++ b/gnu/build/marionette.scm
@@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2016, 2017, 2018 Ludovic Courtès <[email protected]>
+;;; Copyright © 2016, 2017, 2018, 2019 Ludovic Courtès <[email protected]>
;;; Copyright © 2018 Chris Marusich <[email protected]>
;;;
;;; This file is part of GNU Guix.
@@ -310,6 +310,8 @@ PREDICATE, whichever comes first. Raise an error when
TIMEOUT is exceeded."
(#\? . "shift-slash")
(#\[ . "bracket_left")
(#\] . "bracket_right")
+ (#\{ . "shift-bracket_left")
+ (#\} . "shift-bracket_right")
(#\( . "shift-9")
(#\) . "shift-0")
(#\/ . "slash")