diff --git a/menus.lua b/menus.lua index 8a59a67..0d9801d 100644 --- a/menus.lua +++ b/menus.lua @@ -10,20 +10,6 @@ if wezterm.target_triple == "x86_64-pc-windows-msvc" then label = "PowerShell", args = { "pwsh.exe", "-NoLogo" }, }) - - -- Find installed visual studio version(s) and add their compilation - -- environment command prompts to the menu - for _, vsvers in ipairs(wezterm.glob("Microsoft Visual Studio/20*", "C:/Program Files (x86)")) do - local year = vsvers:gsub("Microsoft Visual Studio/", "") - table.insert(launch_menu, { - label = "x64 Native Tools VS " .. year, - args = { - "cmd.exe", - "/k", - "C:/Program Files (x86)/" .. vsvers .. "/BuildTools/VC/Auxiliary/Build/vcvars64.bat", - }, - }) - end end -- Set up btop launcher