One feature I loved from Karabiner on macOS 10.11 was using 鈱僯kli as arrow keys. Any plans to bring this back?
+1 for this or the more general ability to map any combination key press (e.g. "ctrl + j" maps to down arrow).
+1 for this.
You can use 鈱樿嫳銇嬨仾 for it and for other simple multikey remaps.
with hammerspoon
you can implements hotkey for different app
you can bind j k h l without ctrl in finder
https://github.com/jixiuf/dotfiles/blob/master/mac/hammerspoon/app_bind.lua#L70
enableHotkeyForWindowsMatchingFilter(finderWindowFilter, hs.hotkey.new({},"J", keyCodeIfUnediabled("Down"),keyCodeIfEdiabled("j") ,keyCodeIfUnediabled("Down")))
enableHotkeyForWindowsMatchingFilter(finderWindowFilter, hs.hotkey.new({},"K", keyCodeIfUnediabled("Up"),keyCodeIfEdiabled("k") ,keyCodeIfUnediabled("Up")))
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Most helpful comment
You can use 鈱樿嫳銇嬨仾 for it and for other simple multikey remaps.