mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-12 20:18:41 -09:00
* Added persistent text box search * Toggle search box now working * Restyled search box * Linter and bug squashing * Added multi OS hotkey support * PR changes as requested * Added ability to use escape button to close search field * Woops forgot key mapping on non mac platforms * fixed bug where escape would open up search window * Removal of unused vars that died in conflict
55 lines
1.6 KiB
JSON
55 lines
1.6 KiB
JSON
{
|
|
"window:devtools": "command+alt+i",
|
|
"window:reload": "command+shift+r",
|
|
"window:reloadFull": "command+shift+f5",
|
|
"window:preferences": "command+,",
|
|
"zoom:reset": "command+0",
|
|
"zoom:in": [
|
|
"command+plus",
|
|
"command+="
|
|
],
|
|
"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:splitRight": "command+d",
|
|
"pane:splitDown": "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:search": "command+f",
|
|
"editor:search-close": "esc",
|
|
"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:break": "ctrl+c",
|
|
"plugins:update": "command+shift+u"
|
|
}
|