chore: comment out more shortcuts in favor of Raycast shortcuts

This commit is contained in:
Stefan Imhoff
2022-06-18 10:54:24 +02:00
parent 099d53b9eb
commit e89f22ce84

View File

@@ -145,17 +145,17 @@ hotkey.bind(KEY_SAM, "left", function() yank(-100, 0) end)
-- hotkey.bind(KEY_CAM, "7", function() push(0.6, 0, 0.4, 1) end)
-- Move a window between monitors (preserve size)
hotkey.bind(KEY_CM, "1", function() window.focusedWindow():moveOneScreenNorth() end)
hotkey.bind(KEY_CM, "2", function() window.focusedWindow():moveOneScreenSouth() end)
hotkey.bind(KEY_CM, "3", function() window.focusedWindow():moveOneScreenWest() end)
hotkey.bind(KEY_CM, "up", function() window.focusedWindow():moveOneScreenNorth() end)
hotkey.bind(KEY_CM, "down", function() window.focusedWindow():moveOneScreenSouth() end)
hotkey.bind(KEY_CM, "right", function() window.focusedWindow():moveOneScreenEast() end)
hotkey.bind(KEY_CM, "left", function() window.focusedWindow():moveOneScreenWest() end)
hotkey.bind(KEY_CM, "k", function() window.focusedWindow():moveOneScreenNorth() end)
hotkey.bind(KEY_CM, "j", function() window.focusedWindow():moveOneScreenSouth() end)
hotkey.bind(KEY_CM, "l", function() window.focusedWindow():moveOneScreenEast() end)
hotkey.bind(KEY_CM, "h", function() window.focusedWindow():moveOneScreenWest() end)
-- hotkey.bind(KEY_CM, "1", function() window.focusedWindow():moveOneScreenNorth() end)
-- hotkey.bind(KEY_CM, "2", function() window.focusedWindow():moveOneScreenSouth() end)
-- hotkey.bind(KEY_CM, "3", function() window.focusedWindow():moveOneScreenWest() end)
-- hotkey.bind(KEY_CM, "down", function() window.focusedWindow():moveOneScreenSouth() end)
-- hotkey.bind(KEY_CM, "h", function() window.focusedWindow():moveOneScreenWest() end)
-- hotkey.bind(KEY_CM, "j", function() window.focusedWindow():moveOneScreenSouth() end)
-- hotkey.bind(KEY_CM, "k", function() window.focusedWindow():moveOneScreenNorth() end)
-- hotkey.bind(KEY_CM, "l", function() window.focusedWindow():moveOneScreenEast() end)
-- hotkey.bind(KEY_CM, "left", function() window.focusedWindow():moveOneScreenWest() end)
-- hotkey.bind(KEY_CM, "right", function() window.focusedWindow():moveOneScreenEast() end)
-- hotkey.bind(KEY_CM, "up", function() window.focusedWindow():moveOneScreenNorth() end)
-- Move a window between monitors (change to fullscreen) (Moved to Raycast -- keep for later)
-- hotkey.bind(KEY_SCM, "1", function() window.focusedWindow():moveOneScreenNorth(); push(0, 0, 1, 1) end)