marionette: Add braces to the keystrokes.
* gnu/build/marionette.scm (%qwerty-us-keystrokes): Add braces.
This commit is contained in:
parent
7d567af46b
commit
604b167bf2
|
@ -1,5 +1,5 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2016, 2017, 2018 Ludovic Courtès <ludo@gnu.org>
|
;;; Copyright © 2016, 2017, 2018, 2019 Ludovic Courtès <ludo@gnu.org>
|
||||||
;;; Copyright © 2018 Chris Marusich <cmmarusich@gmail.com>
|
;;; Copyright © 2018 Chris Marusich <cmmarusich@gmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
|
@ -310,6 +310,8 @@ PREDICATE, whichever comes first. Raise an error when TIMEOUT is exceeded."
|
||||||
(#\? . "shift-slash")
|
(#\? . "shift-slash")
|
||||||
(#\[ . "bracket_left")
|
(#\[ . "bracket_left")
|
||||||
(#\] . "bracket_right")
|
(#\] . "bracket_right")
|
||||||
|
(#\{ . "shift-bracket_left")
|
||||||
|
(#\} . "shift-bracket_right")
|
||||||
(#\( . "shift-9")
|
(#\( . "shift-9")
|
||||||
(#\) . "shift-0")
|
(#\) . "shift-0")
|
||||||
(#\/ . "slash")
|
(#\/ . "slash")
|
||||||
|
|
Loading…
Reference in New Issue