[hammerspoon] Remove cmd+shift+bracket bindings for switching tabs

pull/28/head
Alpha Chen 9 years ago
parent d7aa0a3d9f
commit cd6bf268c1

@ -3,13 +3,13 @@ local mash = {"cmd", "alt", "ctrl", "shift"}
-- Application shortcuts
hs.hotkey.bind({"cmd", "shift"}, "[", function()
current_app():selectMenuItem({"Window", "Select Previous Tab"})
end)
-- hs.hotkey.bind({"cmd", "shift"}, "[", function()
-- current_app():selectMenuItem({"Window", "Select Previous Tab"})
-- end)
hs.hotkey.bind({"cmd", "shift"}, "]", function()
current_app():selectMenuItem({"Window", "Select Next Tab"})
end)
-- hs.hotkey.bind({"cmd", "shift"}, "]", function()
-- current_app():selectMenuItem({"Window", "Select Next Tab"})
-- end)
-- Window management

Loading…
Cancel
Save