feat: fix the binding
This commit is contained in:
parent
3d5dd1bd9c
commit
35e3a47fe0
2 changed files with 16 additions and 12 deletions
|
|
@ -66,3 +66,7 @@ keybind = ctrl+left_bracket=text:\x1b
|
||||||
keybind = super+c=copy_to_clipboard
|
keybind = super+c=copy_to_clipboard
|
||||||
keybind = super+v=paste_from_clipboard
|
keybind = super+v=paste_from_clipboard
|
||||||
keybind = super+a=select_all
|
keybind = super+a=select_all
|
||||||
|
|
||||||
|
keybind = alt+c=copy_to_clipboard
|
||||||
|
keybind = alt+v=paste_from_clipboard
|
||||||
|
keybind = alt+a=select_all
|
||||||
|
|
|
||||||
|
|
@ -38,18 +38,18 @@
|
||||||
# NOTE: c, v, x are NOT remapped here - they're handled by terminal/app configs
|
# NOTE: c, v, x are NOT remapped here - they're handled by terminal/app configs
|
||||||
# This preserves Ctrl+C = SIGINT in terminals (macOS behavior)
|
# This preserves Ctrl+C = SIGINT in terminals (macOS behavior)
|
||||||
|
|
||||||
# Undo/Redo/Save/Select All/Find
|
# # Undo/Redo/Save/Select All/Find
|
||||||
z = "C-z";
|
# z = "C-z";
|
||||||
"shift+z" = "C-y";
|
# "shift+z" = "C-y";
|
||||||
s = "C-s";
|
# s = "C-s";
|
||||||
a = "C-a";
|
# a = "C-a";
|
||||||
f = "C-f";
|
# f = "C-f";
|
||||||
|
#
|
||||||
# Tab/Window management
|
# # Tab/Window management
|
||||||
w = "C-w";
|
# w = "C-w";
|
||||||
t = "C-t";
|
# t = "C-t";
|
||||||
n = "C-n";
|
# n = "C-n";
|
||||||
q = "A-F4";
|
# q = "A-F4";
|
||||||
|
|
||||||
# Text navigation (macOS-style)
|
# Text navigation (macOS-style)
|
||||||
left = "home";
|
left = "home";
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue