mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-01-02 02:19:06 +01:00
12 lines
No EOL
149 B
Bash
12 lines
No EOL
149 B
Bash
c() { cd ~/code/$1; }
|
|
|
|
_c() { _files -W ~/code -/; }
|
|
compdef _c c
|
|
|
|
|
|
|
|
|
|
b() { cd ~/code/biokm/$1; }
|
|
|
|
_b() { _files -W ~/code/biokm -/; }
|
|
compdef _b b |