From 69e578a7ef61920747e67ab77735ff953dd3443c Mon Sep 17 00:00:00 2001 From: Stefan Imhoff Date: Thu, 14 Apr 2022 14:34:52 +0200 Subject: [PATCH] chore(hammerspoon): comment out unused bindings --- hammerspoon/init.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/hammerspoon/init.lua b/hammerspoon/init.lua index fcd404a..eb85796 100644 --- a/hammerspoon/init.lua +++ b/hammerspoon/init.lua @@ -107,10 +107,10 @@ local LAYOUT_SINGLE = { ------------------ -- Movement hotkeys -hotkey.bind(KEY_AM, "down", function() nudge(0, 100) end) -hotkey.bind(KEY_AM, "up", function() nudge(0, -100) end) -hotkey.bind(KEY_AM, "right", function() nudge(100, 0) end) -hotkey.bind(KEY_AM, "left", function() nudge(-100, 0) end) +-- hotkey.bind(KEY_AM, "down", function() nudge(0, 100) end) +-- hotkey.bind(KEY_AM, "up", function() nudge(0, -100) end) +-- hotkey.bind(KEY_AM, "right", function() nudge(100, 0) end) +-- hotkey.bind(KEY_AM, "left", function() nudge(-100, 0) end) -- Resize hotkeys hotkey.bind(KEY_SAM, "up", function() yank(0, -100) end)