From 7526a5d3de84422cdf1489e2ed568b486fcc3a07 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Wed, 6 May 2026 14:37:07 -0700 Subject: glide: Bind ‘C-n’ and ‘C-p’ in insert mode I don't want this constantly creating new windows when I don't actually mean to do that. I could also change this in ‘about:keyboard’ --- glide/.config/glide/glide.ts | 3 +++ 1 file changed, 3 insertions(+) (limited to 'glide') diff --git a/glide/.config/glide/glide.ts b/glide/.config/glide/glide.ts index 9590a36..d508405 100644 --- a/glide/.config/glide/glide.ts +++ b/glide/.config/glide/glide.ts @@ -82,6 +82,9 @@ glide.keymaps.set(['normal', 'insert'], '', 'commandline_show'); glide.keymaps.set('normal', 't', 'commandline_show tab_new '); glide.keymaps.del('normal', ':'); +glide.keymaps.set('insert', '', async () => await glide.keys.send("")); +glide.keymaps.set('insert', '', async () => await glide.keys.send('')); + const keyboard_quit = glide.excmds.create({ name: "keyboard_quit", description: 'Cancel whatever is going on and return to normal', -- cgit v1.3-2-g0d8e