diff options
author | Teddy Wing | 2019-06-17 20:00:34 +0200 |
---|---|---|
committer | Teddy Wing | 2019-06-17 20:00:34 +0200 |
commit | 4f3f75e1c926e1ad619b2b24d1a7f0459cf20e7e (patch) | |
tree | 71cacbc3c11845859df7b6a4579e2789df5b3259 | |
parent | 87aa98923847dfd64874736d62d9288c175e82de (diff) | |
download | WindowMode.spoon-4f3f75e1c926e1ad619b2b24d1a7f0459cf20e7e.tar.bz2 |
Update docs with new large window movement shortcuts
-rw-r--r-- | README.rst | 48 | ||||
-rw-r--r-- | docs.json | 2 | ||||
-rw-r--r-- | init.lua | 21 |
3 files changed, 43 insertions, 28 deletions
@@ -5,25 +5,35 @@ A Hammerspoon_ Spoon that provides a keyboard mode for manipulating windows. Upon activating the mode, the following shortcuts are available: -+-------+----------------------------+ -| ``h`` | Move window left 20 units | -+-------+----------------------------+ -| ``j`` | Move window down 20 units | -+-------+----------------------------+ -| ``k`` | Move window up 20 units | -+-------+----------------------------+ -| ``l`` | Move window right 20 units | -+-------+----------------------------+ - -+-------------+----------------------------+ -| ``Shift-h`` | Move window left 5 units | -+-------------+----------------------------+ -| ``Shift-j`` | Move window down 5 units | -+-------------+----------------------------+ -| ``Shift-k`` | Move window up 5 units | -+-------------+----------------------------+ -| ``Shift-l`` | Move window right 5 units | -+-------------+----------------------------+ ++-------+-----------------------------+ +| ``h`` | Move window left 100 units | ++-------+-----------------------------+ +| ``j`` | Move window down 100 units | ++-------+-----------------------------+ +| ``k`` | Move window up 100 units | ++-------+-----------------------------+ +| ``l`` | Move window right 100 units | ++-------+-----------------------------+ + ++-------------+-----------------------------+ +| ``Shift-h`` | Move window left 20 units | ++-------------+-----------------------------+ +| ``Shift-j`` | Move window down 20 units | ++-------------+-----------------------------+ +| ``Shift-k`` | Move window up 20 units | ++-------------+-----------------------------+ +| ``Shift-l`` | Move window right 20 units | ++-------------+-----------------------------+ + ++--------------+----------------------------+ +| ``Option-h`` | Move window left 5 units | ++--------------+----------------------------+ +| ``Option-j`` | Move window down 5 units | ++--------------+----------------------------+ +| ``Option-k`` | Move window up 5 units | ++--------------+----------------------------+ +| ``Option-l`` | Move window right 5 units | ++--------------+----------------------------+ +-------+---------------------+ | ``i`` | Move window to top | @@ -23,7 +23,7 @@ "Constructor" : [ ], - "doc" : "Adds a hotkey mode for manipulating windows.\n\nUpon activating the mode, the following shortcuts are available:\n\nh: Move window left 20 units\nj: Move window down 20 units\nk: Move window up 20 units\nl: Move window right 20 units\n\nShift-h: Move window left 5 units\nShift-j: Move window down 5 units\nShift-k: Move window up 5 units\nShift-l: Move window right 5 units\n\ni: Move window to top\n\n[: Move window left one screen\n]: Move window right one screen\n\ne: Reduce window height 20 units\ns: Reduce window width 20 units\nd: Increase window height 20 units\nf: Increase window width 20 units\n\nShift-e: Reduce window height 5 units\nShift-s: Reduce window width 5 units\nShift-d: Increase window height 5 units\nShift-f: Increase window width 5 units", + "doc" : "Adds a hotkey mode for manipulating windows.\n\nUpon activating the mode, the following shortcuts are available:\n\nh: Move window left 100 units\nj: Move window down 100 units\nk: Move window up 100 units\nl: Move window right 100 units\n\nShift-h: Move window left 20 units\nShift-j: Move window down 20 units\nShift-k: Move window up 20 units\nShift-l: Move window right 20 units\n\nOption-h: Move window left 5 units\nOption-j: Move window down 5 units\nOption-k: Move window up 5 units\nOption-l: Move window right 5 units\n\ni: Move window to top\n\n[: Move window left one screen\n]: Move window right one screen\n\ne: Reduce window height 20 units\ns: Reduce window width 20 units\nd: Increase window height 20 units\nf: Increase window width 20 units\n\nShift-e: Reduce window height 5 units\nShift-s: Reduce window width 5 units\nShift-d: Increase window height 5 units\nShift-f: Increase window width 5 units", "Method" : [ { "desc" : "Bind keys for WindowMode", @@ -4,15 +4,20 @@ --- --- Upon activating the mode, the following shortcuts are available: --- ---- h: Move window left 20 units ---- j: Move window down 20 units ---- k: Move window up 20 units ---- l: Move window right 20 units +--- h: Move window left 100 units +--- j: Move window down 100 units +--- k: Move window up 100 units +--- l: Move window right 100 units --- ---- Shift-h: Move window left 5 units ---- Shift-j: Move window down 5 units ---- Shift-k: Move window up 5 units ---- Shift-l: Move window right 5 units +--- Shift-h: Move window left 20 units +--- Shift-j: Move window down 20 units +--- Shift-k: Move window up 20 units +--- Shift-l: Move window right 20 units +--- +--- Option-h: Move window left 5 units +--- Option-j: Move window down 5 units +--- Option-k: Move window up 5 units +--- Option-l: Move window right 5 units --- --- i: Move window to top --- |