This skill should be used when the user asks about "hyper keybindings", "hyper keys", "hyper shortcuts", "customize hyper keys", "hyper keymap", "pane splitting hyper", or mentions keyboard shortcuts and key customization in Hyper terminal.
From hyper-devnpx claudepluginhub nthplusio/functional-claude --plugin hyper-devThis skill uses the workspace's default tool permissions.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Executes pre-written implementation plans: critically reviews, follows bite-sized steps exactly, runs verifications, tracks progress with checkpoints, uses git worktrees, stops on blockers.
Configure keyboard shortcuts and keymaps in Hyper terminal.
Define custom keybindings in the keymaps section of .hyper.js:
module.exports = {
config: {
// ... other config
},
keymaps: {
// Window management
'window:devtools': 'cmd+alt+o',
'window:reload': 'cmd+shift+r',
'window:reloadFull': 'cmd+shift+f5',
'window:preferences': 'cmd+,',
'window:new': 'cmd+n',
'window:minimize': 'cmd+m',
'window:close': 'cmd+shift+w',
'window:toggleFullScreen': 'cmd+ctrl+f',
// Zoom
'zoom:reset': 'cmd+0',
'zoom:in': 'cmd+plus',
'zoom:out': 'cmd+minus',
// Tabs
'tab:new': 'cmd+t',
'tab:next': 'cmd+shift+]',
'tab:prev': 'cmd+shift+[',
// Panes
'pane:splitVertical': 'cmd+d',
'pane:splitHorizontal': 'cmd+shift+d',
'pane:close': 'cmd+w',
// Editor
'editor:copy': 'cmd+c',
'editor:paste': 'cmd+v',
'editor:selectAll': 'cmd+a',
},
};
| Action | Default (macOS) | Description |
|---|---|---|
window:devtools | cmd+alt+i | Open DevTools |
window:reload | cmd+shift+r | Reload window |
window:preferences | cmd+, | Open preferences |
window:new | cmd+n | New window |
window:close | cmd+shift+w | Close window |
window:toggleFullScreen | cmd+ctrl+f | Toggle fullscreen |
| Action | Default (macOS) | Description |
|---|---|---|
tab:new | cmd+t | New tab |
tab:next | cmd+shift+] | Next tab |
tab:prev | cmd+shift+[ | Previous tab |
| Action | Default (macOS) | Description |
|---|---|---|
pane:splitVertical | cmd+d | Split vertically |
pane:splitHorizontal | cmd+shift+d | Split horizontally |
pane:close | cmd+w | Close pane |
| Action | Default (macOS) | Description |
|---|---|---|
editor:copy | cmd+c | Copy selection |
editor:paste | cmd+v | Paste clipboard |
editor:selectAll | cmd+a | Select all |
Use platform-appropriate modifiers:
cmd, alt, ctrl, shiftctrl, alt, shift// Platform detection in config
const isMac = process.platform === 'darwin';
keymaps: {
'tab:new': isMac ? 'cmd+t' : 'ctrl+t',
}
'a', '1', 'f5''cmd+c', 'ctrl+shift+r''cmd+alt+i', 'ctrl+shift+alt+n'After modifying keymaps:
Cmd+Shift+RCtrl+Shift+R