Skip to content

Commit

Permalink
adapt and disable panes
Browse files Browse the repository at this point in the history
  • Loading branch information
caillou committed Mar 14, 2020
1 parent b717105 commit aa21c6c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion hammerspoon/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ require('keyboard.control-escape')
-- require('keyboard.delete-words')
-- require('keyboard.markdown')
-- require('keyboard.microphone')
require('keyboard.panes')
-- require('keyboard.panes')
require('keyboard.super')
require('keyboard.windows')

Expand Down
6 changes: 3 additions & 3 deletions hammerspoon/panes.lua
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ local itermHotkeyMappings = {

-- Use control + h/j/k/l to move left/down/up/right by one pane
{
from = {{'ctrl'}, 'h'},
from = {{'ctrl'}, 'j'},
to = {{'cmd', 'alt'}, 'left'}
},
{
from = {{'ctrl'}, 'j'},
from = {{'ctrl'}, 'k'},
to = {{'cmd', 'alt'}, 'down'}
},
{
from = {{'ctrl'}, 'k'},
from = {{'ctrl'}, 'i'},
to = {{'cmd', 'alt'}, 'up'}
},
{
Expand Down

0 comments on commit aa21c6c

Please sign in to comment.