Skip to content

Instantly share code, notes, and snippets.

View dantefung's full-sized avatar

Dante Fung dantefung

View GitHub Profile
// 统一前缀按键(zed 默认是 cmd-k), 不能单独使用它们,否则会导致 zed 按键相应延迟:
// 1. ctrl-x: 与文件、窗口、pane 操作相关,如打开、关闭等;
// 2. ctrl-c: 与内容有关,如诊断、xref 等;
//
// 统一修饰键使用顺序:ctrl-cmd-alt-shift。
//
// 高频操作尽量使用短快捷键, 复杂或低频操作使用长快捷键。
// 有些按键定义 follow emacs 按键风格,可能会打破上面的惯例,如 ctrl-= 对应的是 ctrl--。
//
// shift 按键注意事项:

TeammateTool Implementation Guide

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.


Table of Contents

  1. Architecture Overview
  2. Data Structures & Schemas
@dantefung
dantefung / git-aliases.sh
Created July 24, 2023 01:35 — forked from eromurugan/git-aliases.sh
[Git Aliases] #git #alias #git-alias
# ----------------------
# 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'
@dantefung
dantefung / git_aliases
Created July 16, 2023 15:58 — forked from numeraltwo/git_aliases
useful git and git-flow aliases
# 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"
@dantefung
dantefung / .gitconfig
Created July 16, 2023 15:57 — forked from Wirone/.gitconfig
GIT & GitFlow aliases for ~/.gitconfig
# 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/
@dantefung
dantefung / .ideavimrc
Created November 19, 2022 21:13 — forked from LintaoAmons/.ideavimrc
ideavimrc
" ================================================================================================
" = Extensions =====================================
" ================================================================================================
Plug 'tpope/vim-surround'
Plug 'preservim/nerdtree'
" ================================================================================================
" = Basic settings =====================================
" ================================================================================================
set clipboard+=unnamed