|
|
|
|
|
by mkhnews
1191 days 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)
} }
},
|
|