with one click
keybindings-help
Help edit ~/.deepcode/keybindings.json.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Help edit ~/.deepcode/keybindings.json.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Help build/debug DeepSeek API usage (openai-compatible).
Run a command on a recurring interval (poll CI etc.).
Read/extract/combine/split PDFs.
Launch this project's app to see a change in action.
Schedule a one-off or cron task via DeepCode's daemon.
Help author a new skill — frontmatter + body + best-trigger description.
| name | keybindings-help |
| description | Help edit ~/.deepcode/keybindings.json. |
Add or modify entries in ~/.deepcode/keybindings.json. Explain the
syntax + show what will change.
/keybindings and asks for a tweak.{
"enabled": true,
"vim": false,
"bindings": [
{ "key": "ctrl+shift+t", "action": "/clear" },
{ "key": "esc esc", "action": "/rewind" },
{ "key": "g g", "action": "cursor-buffer-start", "when": "NORMAL" }
]
}
ctrl, shift, alt, meta.+ for chord (ctrl+a), space for sequence (g g).Shift+Ctrl+A ≡ ctrl+shift+a."/clear", "/mode plan", etc."insert:hello" inserts "hello" at cursor.cursor-line-start, kill-to-end, vim-insert-mode, etc.See DEFAULT_KEYBINDINGS in packages/core/src/keybindings/index.ts
for the full list.
When vim: true, the when field constrains a binding to NORMAL /
INSERT / VISUAL. Vim defaults (i, a, v, gg, dd, yy, p, u) ship by
default; user bindings layer on top.
chord-syntax).