fix: adjusted shortcuts for wezterm to fix conflict with 'screen' command

This commit is contained in:
Menno van Leeuwen 2024-08-23 00:12:41 +02:00
parent 9b3f585146
commit 379b1b97ec
Signed by: vleeuwenmenno
SSH Key Fingerprint: SHA256:OJFmjANpakwD3F2Rsws4GLtbdz1TJ5tkQF0RZmF0TRE

View File

@ -27,13 +27,13 @@ config.keys = {
},
-- Ctrl+s for split horizontal
{
key = 's',
key = 'h',
mods = 'CTRL',
action = wezterm.action{SplitHorizontal={domain="CurrentPaneDomain"}}
},
-- Ctrl+d for split vertical
{
key = 'd',
key = 'v',
mods = 'CTRL',
action = wezterm.action{SplitVertical={domain="CurrentPaneDomain"}}
},