Skip to content

Instantly share code, notes, and snippets.

@pd
Created April 15, 2013 21:13
Show Gist options
  • Save pd/5391333 to your computer and use it in GitHub Desktop.
Save pd/5391333 to your computer and use it in GitHub Desktop.
bindings combos.mash,
'R': -> App.reloadConfig
'F': (win) -> win.maximize
'U': relocate (loc) -> loc.fillColumn()
'H': relocate (loc) -> loc.move('column', -1)
'J': relocate (loc) -> loc.move('row', 1)
'K': relocate (loc) -> loc.move('row', -1)
'L': relocate (loc) -> loc.move('column', 1)
'I': relocate (loc) -> loc.inc('width', -1)
'O': relocate (loc) -> loc.inc('width', 1)
bindings combos.cmdFnStandIn,
'H': focused (win) -> win.focusWindowLeft
'J': focused (win) -> win.focusWindowDown
'K': focused (win) -> win.focusWindowUp
'L': focused (win) -> win.focusWindowRight
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment