一键导入
keybindings-help
Help edit ~/.deepcode/keybindings.json.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Help edit ~/.deepcode/keybindings.json.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
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).