mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-26 02:12:33 +01:00
Added personal c plugin
This commit is contained in:
parent
8ca334e12f
commit
7ceb9b7c7c
1 changed files with 10 additions and 0 deletions
10
plugins/c/c.plugin.zsh
Normal file
10
plugins/c/c.plugin.zsh
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
function c() {
|
||||||
|
cd ~/Dev/$1;
|
||||||
|
}
|
||||||
|
|
||||||
|
#compdef c
|
||||||
|
function _c () {
|
||||||
|
_files -W ~/Dev -/
|
||||||
|
}
|
||||||
|
|
||||||
|
compdef _c c
|
||||||
Loading…
Add table
Add a link
Reference in a new issue