hammerspoon: sync
This commit is contained in:
43
hammerspoon/.hammerspoon/keyboard/panes.lua
Normal file
43
hammerspoon/.hammerspoon/keyboard/panes.lua
Normal file
@@ -0,0 +1,43 @@
|
||||
local itermHotkeyMappings = {
|
||||
-- Use control + dash to split panes horizontally
|
||||
{
|
||||
from = {{'ctrl'}, '-'},
|
||||
to = {{'cmd', 'shift'}, 'd'}
|
||||
},
|
||||
|
||||
-- Use control + pipe to split panes vertically
|
||||
{
|
||||
from = {{'ctrl', 'shift'}, '\\'},
|
||||
to = {{'cmd'}, 'd'}
|
||||
},
|
||||
|
||||
-- Use control + h/j/k/l to move left/down/up/right by one pane
|
||||
{
|
||||
from = {{'ctrl'}, 'h'},
|
||||
to = {{'cmd', 'alt'}, 'left'}
|
||||
},
|
||||
{
|
||||
from = {{'ctrl'}, 'j'},
|
||||
to = {{'cmd', 'alt'}, 'down'}
|
||||
},
|
||||
{
|
||||
from = {{'ctrl'}, 'k'},
|
||||
to = {{'cmd', 'alt'}, 'up'}
|
||||
},
|
||||
{
|
||||
from = {{'ctrl'}, 'l'},
|
||||
to = {{'cmd', 'alt'}, 'right'}
|
||||
},
|
||||
}
|
||||
|
||||
local terminalWindowFilter = hs.window.filter.new('iTerm2')
|
||||
local itermHotkeys = hs.fnutils.each(itermHotkeyMappings, function(mapping)
|
||||
local fromMods = mapping['from'][1]
|
||||
local fromKey = mapping['from'][2]
|
||||
local toMods = mapping['to'][1]
|
||||
local toKey = mapping['to'][2]
|
||||
local hotkey = hs.hotkey.new(fromMods, fromKey, function()
|
||||
keyUpDown(toMods, toKey)
|
||||
end)
|
||||
enableHotkeyForWindowsMatchingFilter(terminalWindowFilter, hotkey)
|
||||
end)
|
||||
Reference in New Issue
Block a user