summaryrefslogtreecommitdiff
path: root/catbird.scm
diff options
context:
space:
mode:
authorDavid Thompson <dthompson@vistahigherlearning.com>2022-10-26 20:42:57 -0400
committerDavid Thompson <dthompson@vistahigherlearning.com>2022-10-26 20:42:57 -0400
commit1700827a7f4694375226faffcc466709ec8c79d9 (patch)
tree2da046527055988b9a27299ad81b6dbe36ae59e9 /catbird.scm
parent619d33533e3029ffcb9e670db7cc136f074a51f1 (diff)
kernel: Fix global input binding.
Diffstat (limited to 'catbird.scm')
-rw-r--r--catbird.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/catbird.scm b/catbird.scm
index 9279cdb..417cadb 100644
--- a/catbird.scm
+++ b/catbird.scm
@@ -53,7 +53,7 @@
(define (open-minibuffer)
(push-major-mode (overlay-scene) (make <minibuffer-mode>)))
-;;(bind-input/global (key-press 'x '(alt)) open-minibuffer)
+(bind-input/global (key-press 'x '(alt)) open-minibuffer)
(define* (run-catbird thunk #:key (width 1366) (height 768)
(title "^~Catbird~^") (fullscreen? #f)