copied profile

This commit is contained in:
Peter Wood
2025-04-08 15:31:34 -04:00
parent 59ea35edc7
commit 6c72ecbd48
106 changed files with 9515 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
---@module "events.new-tab-button-click"
---@author sravioli
---@license GNU-GPLv3
local wt = require "wezterm"
wt.on("new-tab-button-click", function(window, pane, button, default_action)
if default_action and button == "Left" then
window:perform_action(default_action, pane)
end
if default_action and button == "Right" then
window:perform_action(
wt.action.ShowLauncherArgs {
title = " Select/Search:",
flags = "FUZZY|LAUNCH_MENU_ITEMS|DOMAINS",
},
pane
)
end
return false
end)