mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-13 12:38:39 -09:00
* fixed documentation of roleCommands * Added keymap for break/interrupt command * added break keymap for linux and darwin * fixed lint errors
51 lines
1.5 KiB
JSON
51 lines
1.5 KiB
JSON
{
|
|
"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"
|
|
}
|