disable default click-to-open-url behaviour in wezterm

now ctrl+click does this
This commit is contained in:
Gered 2024-09-30 14:30:45 -04:00
parent f133f26c91
commit de8476a186

View file

@ -209,6 +209,32 @@ end)
--------------------------------------------------------------------------------
local act = wezterm.action
-- Some stuff below borrowed from comments here: https://github.com/wez/wezterm/issues/119
config.mouse_bindings = {
{
event = { Up = { streak = 1, button = "Left" } },
mods = "NONE",
action = act.CompleteSelection("PrimarySelection"),
},
-- ctrl+click to open urls, etc.
{
event = { Up = { streak = 1, button = "Left" } },
mods = "CTRL",
action = act.OpenLinkAtMouseCursor,
},
-- prevents weird behaviours from occuring given the about ctrl+click binding
{
event = { Down = { streak = 1, button = "Left" } },
mods = "CTRL",
action = act.Nop,
},
}
--------------------------------------------------------------------------------
-- copied from https://github.com/wez/wezterm/issues/4331
-- however it has some issues, seems to reset color theme to default?