Skip to content

Commit

Permalink
fix(bindings): further escape cursor movment characters to avoid miss…
Browse files Browse the repository at this point in the history
…ing_glyph warning (#40)
  • Loading branch information
KevinSilvester committed Dec 16, 2024
1 parent 0c9980b commit 7b69d2b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions config/bindings.lua
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ local keys = {
},

-- cursor movement --
{ key = 'LeftArrow', mods = mod.SUPER, action = act.SendString '\x1bOH' },
{ key = 'RightArrow', mods = mod.SUPER, action = act.SendString '\x1bOF' },
{ key = 'Backspace', mods = mod.SUPER, action = act.SendString '\x15' },
{ key = 'LeftArrow', mods = mod.SUPER, action = act.SendString '\u{1b}OH' },
{ key = 'RightArrow', mods = mod.SUPER, action = act.SendString '\u{1b}OF' },
{ key = 'Backspace', mods = mod.SUPER, action = act.SendString '\u{15}' },

-- copy/paste --
{ key = 'c', mods = 'CTRL|SHIFT', action = act.CopyTo('Clipboard') },
Expand Down

0 comments on commit 7b69d2b

Please sign in to comment.