Fix bindings for alacritty

This commit is contained in:
xenia 2024-06-04 16:31:23 +02:00
parent 0b0bca831c
commit 4033e50734

View File

@ -8,7 +8,7 @@ let
tmux-binds = [ tmux-binds = [
{ key = ''Period''; mods = ''Control''; chars = ''\u001D''; } # tmux escape { key = ''Period''; mods = ''Control''; chars = ''\u001D''; } # tmux escape
{ key = ''Period''; mods = ''Shift|Command''; chars = ''\u001D:''; } { key = ''Colon''; mods = ''Shift|Command''; chars = ''\u001D:''; }
{ key = ''Key0''; mods = ''Command''; chars = ''\u001D0''; } { key = ''Key0''; mods = ''Command''; chars = ''\u001D0''; }
{ key = ''Key1''; mods = ''Command''; chars = ''\u001D1''; } { key = ''Key1''; mods = ''Command''; chars = ''\u001D1''; }
{ key = ''Key2''; mods = ''Command''; chars = ''\u001D2''; } { key = ''Key2''; mods = ''Command''; chars = ''\u001D2''; }
@ -24,6 +24,7 @@ let
{ key = ''R''; mods = ''Command''; chars = ''\u001D$''; } { key = ''R''; mods = ''Command''; chars = ''\u001D$''; }
{ key = ''W''; mods = ''Shift|Command''; chars = ''\u001D&''; } # kill window { key = ''W''; mods = ''Shift|Command''; chars = ''\u001D&''; } # kill window
{ key = ''W''; mods = ''Command''; chars = ''\u001Dx''; } # kill pane { key = ''W''; mods = ''Command''; chars = ''\u001Dx''; } # kill pane
{ key = ''Å''; mods = ''Command''; chars = ''\u001Dd''; } # detach (Å is qwerty Q)
{ key = ''Left''; mods = ''Command''; chars = ''\u001Dp''; } { key = ''Left''; mods = ''Command''; chars = ''\u001Dp''; }
{ key = ''Right''; mods = ''Command''; chars = ''\u001Dn''; } { key = ''Right''; mods = ''Command''; chars = ''\u001Dn''; }
@ -32,7 +33,6 @@ let
{ key = ''Left''; mods = ''Shift|Command''; chars = ''\u001D\u001b[D''; } { key = ''Left''; mods = ''Shift|Command''; chars = ''\u001D\u001b[D''; }
{ key = ''O''; mods = ''Command''; chars = ''\u001Dw''; } # ''open'', open a window { key = ''O''; mods = ''Command''; chars = ''\u001Dw''; } # ''open'', open a window
{ key = ''A''; mods = ''Command''; chars = ''\u001D;''; } # Last pane { key = ''A''; mods = ''Command''; chars = ''\u001D;''; } # Last pane
]; ];