wezterm rebind of Ctrl+Shift+F to case-insensitive search

This commit is contained in:
Gered 2024-10-03 08:45:22 -04:00
parent 97fe503287
commit d51dad3e12

View file

@ -84,6 +84,11 @@ config.keys = {
mods = "CTRL|SHIFT|ALT",
action = wezterm.action.CloseCurrentPane({ confirm = true }),
},
{
key = "F",
mods = "CTRL|SHIFT",
action = wezterm.action.Search({ CaseInSensitiveString = "" }),
},
}
--------------------------------------------------------------------------------