Skip to content

v0.9.99.57

Compare
Choose a tag to compare
@o-sdn-o o-sdn-o released this 17 Dec 12:24
· 39 commits to master since this release
03077e3

GitHub all current

Changes

  • Suppress tile's pane split if there is no space.
  • Remove DropAutoRepeat for tile splitting hot keys.
  • Set a unique focus for the app in the Tiling Window Manager created by a mouse click.
  • Allow moving and resizing tile's grips using arrow keys.
    <config>
      <hotkeys>  <!-- The required key combination sequence can be generated on the Info page, accessible by clicking on the label in the lower right corner of the vtm desktop. -->
          <tile>
              <grips key*>
                  <key="LeftArrow" ><action=TileMoveGrip   data="-1, 0"/></key>  <!-- Move the split grip to the left. -->
                  <key="RightArrow"><action=TileMoveGrip   data=" 1, 0"/></key>  <!-- Move the split grip to the right. -->
                  <key="UpArrow"   ><action=TileMoveGrip   data=" 0,-1"/></key>  <!-- Move the split grip up. -->
                  <key="DownArrow" ><action=TileMoveGrip   data=" 0, 1"/></key>  <!-- Move the split grip down. -->
                  <key="'-'"       ><action=TileResizeGrip data="-1"   /></key>  <!-- Decrease the split grip width. -->
                  <key="Shift+'+'" ><action=TileResizeGrip data=" 1"   /></key>  <!-- Increase the split grip width. -->
              </grips>
          </tile>
      </hotkeys>
    </config>