Reverse-engineered from Claude Code CLI v2.1.34. This document provides a complete blueprint for implementing a multi-agent teammate coordination system in another code agent.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 统一前缀按键(zed 默认是 cmd-k), 不能单独使用它们,否则会导致 zed 按键相应延迟: | |
| // 1. ctrl-x: 与文件、窗口、pane 操作相关,如打开、关闭等; | |
| // 2. ctrl-c: 与内容有关,如诊断、xref 等; | |
| // | |
| // 统一修饰键使用顺序:ctrl-cmd-alt-shift。 | |
| // | |
| // 高频操作尽量使用短快捷键, 复杂或低频操作使用长快捷键。 | |
| // 有些按键定义 follow emacs 按键风格,可能会打破上面的惯例,如 ctrl-= 对应的是 ctrl--。 | |
| // | |
| // shift 按键注意事项: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ---------------------- | |
| # Git Aliases | |
| # ---------------------- | |
| alias g='git' | |
| alias gcl='git clone' | |
| alias ga='git add' | |
| alias grm='git rm' | |
| alias gap='git add -p' | |
| alias gall='git add -A' | |
| alias gf='git fetch --all --prune' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # GIT / GIT FLOW ALIASES | |
| alias gs="git stash" | |
| alias gsa="git stash apply" | |
| alias gsl="git stash list" | |
| alias gsc="git stash clear" | |
| alias gft="git fetch --tags" | |
| alias gpt="git push --tags" | |
| alias gcm="git checkout master" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # GIT aliases for ~/.gitconfig file | |
| # @author Grzegorz Korba <grzegorz.korba@codito.net> | |
| # Credits: Miscellaneous places on the Internet... | |
| # GitFlow related sections | |
| [gitflow "branch"] | |
| master = master | |
| develop = develop | |
| [gitflow "prefix"] | |
| feature = feature/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| " ================================================================================================ | |
| " = Extensions ===================================== | |
| " ================================================================================================ | |
| Plug 'tpope/vim-surround' | |
| Plug 'preservim/nerdtree' | |
| " ================================================================================================ | |
| " = Basic settings ===================================== | |
| " ================================================================================================ | |
| set clipboard+=unnamed |