Last active
June 22, 2024 03:49
-
-
Save vantm/d0a51009aa149c62067251b6fc5794dd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "actions": [ | |
| { | |
| "command": { "action": "copy", "singleLine": false }, | |
| "keys": "ctrl+c" | |
| }, | |
| { | |
| "command": "paste", | |
| "keys": "ctrl+v" | |
| }, | |
| { | |
| "command": { "action": "prevTab" }, | |
| "keys": "shift+alt+p" | |
| }, | |
| { | |
| "command": { "action": "nextTab" }, | |
| "keys": "shift+alt+n" | |
| }, | |
| { | |
| "command": { "action": "moveFocus", "direction": "up" }, | |
| "keys": "alt+shift+k" | |
| }, | |
| { | |
| "command": { "action": "moveFocus", "direction": "down" }, | |
| "keys": "alt+shift+j" | |
| }, | |
| { | |
| "command": { "action": "moveFocus", "direction": "left" }, | |
| "keys": "alt+shift+h" | |
| }, | |
| { | |
| "command": { "action": "moveFocus", "direction": "right" }, | |
| "keys": "alt+shift+l" | |
| }, | |
| { | |
| "command": { "action": "newTab" }, | |
| "keys": "ctrl+alt+n" | |
| }, | |
| { | |
| "command": "find", | |
| "keys": "ctrl+shift+f" | |
| }, | |
| { | |
| "command": { "action": "resizePane", "direction": "up" }, | |
| "keys": "ctrl+alt+k" | |
| }, | |
| { | |
| "command": { "action": "resizePane", "direction": "down" }, | |
| "keys": "ctrl+alt+j" | |
| }, | |
| { | |
| "command": { "action": "resizePane", "direction": "left" }, | |
| "keys": "ctrl+alt+h" | |
| }, | |
| { | |
| "command": { "action": "resizePane", "direction": "right" }, | |
| "keys": "ctrl+alt+l" | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment