-
-
Save LaurentFough/30df8cff3b023fb7dbdd7394bc6a71de to your computer and use it in GitHub Desktop.
Hyper term keymaps (mac)
This file contains 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
{ | |
"window:devtools": "command+alt+i", | |
"window:reload": "command+r", | |
"window:reloadFull": "command+shift+r", | |
"window:preferences": "command+,", | |
"zoom:reset": "command+0", | |
"zoom:in": "command+plus", | |
"zoom:out": "command+-", | |
"window:new": "command+n", | |
"window:minimize": "command+m", | |
"window:zoom": "ctrl+alt+command+m", | |
"window:toggleFullScreen": "command+ctrl+f", | |
"window:close": "command+shift+w", | |
"tab:new": "command+t", | |
"tab:next": [ | |
"command+shift+]", | |
"command+shift+right", | |
"command+alt+right", | |
"ctrl+tab" | |
], | |
"tab:prev": [ | |
"command+shift+[", | |
"command+shift+left", | |
"command+alt+left", | |
"ctrl+shift+tab" | |
], | |
"tab:jump:prefix": "command", | |
"pane:next": "command+]", | |
"pane:prev": "command+[", | |
"pane:splitVertical": "command+d", | |
"pane:splitHorizontal": "command+shift+d", | |
"pane:close": "command+w", | |
"editor:undo": "command+z", | |
"editor:redo": "command+y", | |
"editor:cut": "command+x", | |
"editor:copy": "command+c", | |
"editor:paste": "command+v", | |
"editor:selectAll": "command+a", | |
"editor:movePreviousWord": "alt+left", | |
"editor:moveNextWord": "alt+right", | |
"editor:moveBeginningLine": "command+left", | |
"editor:moveEndLine": "command+right", | |
"editor:deletePreviousWord": "alt+backspace", | |
"editor:deleteNextWord": "alt+delete", | |
"editor:deleteBeginningLine": "command+backspace", | |
"editor:deleteEndLine": "command+delete", | |
"editor:clearBuffer": "command+k", | |
"editor:emojis": "command+ctrl+space", | |
"editor:break": "ctrl+c", | |
"plugins:update": "command+shift+u" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment