6 ms·
I used wezterm for a while and we added this key binding, I think it was from Wez himself ? - { key="e", mods="CTRL|ALT", action=wezterm.acti
by mkhnews 4y ago
I used wezterm for a while and we added this key binding, I think it was from Wez himself ? -
{ key="e", mods="CTRL|ALT", action=wezterm.action{QuickSelectArgs={
patterns={
"http?://\\S+",
"https?://\\S+"
},
action = wezterm.action_callback(function(window, pane)
local url = window:get_selection_text_for_pane(pane)
wezterm.open_with(url)
end)
} }
},