From cd6bf268c1b20c9596984cd134dd7e5507867bcd Mon Sep 17 00:00:00 2001 From: Alpha Chen Date: Sun, 6 Mar 2016 16:09:49 -0800 Subject: [PATCH] [hammerspoon] Remove cmd+shift+bracket bindings for switching tabs --- .hammerspoon/init.lua | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.hammerspoon/init.lua b/.hammerspoon/init.lua index 42ccecb..44549a4 100644 --- a/.hammerspoon/init.lua +++ b/.hammerspoon/init.lua @@ -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