mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-26 02:12:33 +01:00
10 lines
99 B
Bash
10 lines
99 B
Bash
function c() {
|
|
cd ~/Dev/$1;
|
|
}
|
|
|
|
#compdef c
|
|
function _c () {
|
|
_files -W ~/Dev -/
|
|
}
|
|
|
|
compdef _c c
|