diff options
Diffstat (limited to '')
-rw-r--r-- | .zsh/zshfunctions | 8 | ||||
-rw-r--r-- | .zsh/zshrc | 1 |
2 files changed, 3 insertions, 6 deletions
diff --git a/.zsh/zshfunctions b/.zsh/zshfunctions index 9f0270e..72e455d 100644 --- a/.zsh/zshfunctions +++ b/.zsh/zshfunctions @@ -6,13 +6,9 @@ Start Stop Reload Restart () } # Change to the directory of a specific package -cdu () +_cdu () { - local cp - - [[ -n $1 ]] && cp=$(eix -e $1 --format "<category>/<name>" 2>/dev/null | head -n1) - - cd /usr/portage/${cp} + cd $(dirname $1) } # Open the ebuild with a specified command @@ -28,6 +28,7 @@ alias e="eix -e" alias i="eix -I" alias ee='open_ebuild vim' alias eeg='open_ebuild gvim' +alias cdu='open_ebuild _cdu' # misc alias cdp='cd ~/dev/portato' |