aboutsummaryrefslogtreecommitdiffstats
path: root/glide
diff options
context:
space:
mode:
authorGravatar Tom Willemse2026-03-24 11:31:21 -0700
committerGravatar Tom Willemse2026-03-30 10:28:30 -0700
commitcae69d767a96f5ce04021dcced7146fa8ada252e (patch)
treec0b379ad6c5742bf72848ab5e56f2934b70f23f0 /glide
parent5219d3a089b73aa6278ef03f944ec1c3e1d9d32e (diff)
downloadnew-dotfiles-cae69d767a96f5ce04021dcced7146fa8ada252e.tar.gz
new-dotfiles-cae69d767a96f5ce04021dcced7146fa8ada252e.zip
glide: Bind keyboard_quit in command and normal modes as well
Diffstat (limited to 'glide')
-rw-r--r--glide/.config/glide/glide.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/glide/.config/glide/glide.ts b/glide/.config/glide/glide.ts
index 5485e57..88e93ce 100644
--- a/glide/.config/glide/glide.ts
+++ b/glide/.config/glide/glide.ts
@@ -93,7 +93,7 @@ const keyboard_quit = glide.excmds.create({
glide.excmds.execute('mode_change normal');
});
-glide.keymaps.set('insert', '<C-g>', 'keyboard_quit');
+glide.keymaps.set(['insert', 'command', 'normal'], '<C-g>', 'keyboard_quit');
// Search
const search_next = glide.excmds.create({