1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2025-06-15 07:01:41 +00:00

[#23] Remove unnecessary compdef calls

This commit is contained in:
Sorin Ionescu
2012-04-03 21:01:59 -04:00
parent e2859daba4
commit c6793d38b9
2 changed files with 0 additions and 107 deletions

View File

@ -15,13 +15,9 @@ if [[ "$OSTYPE" == darwin* ]] && grep -q 'file-flags' <(rsync --help 2>&1); then
fi
alias rsync-copy="${rsync_cmd}"
compdef _rsync rsync-copy=rsync 2> /dev/null
alias rsync-move="${rsync_cmd} --remove-source-files"
compdef _rsync rsync-move=rsync 2> /dev/null
alias rsync-update="${rsync_cmd} --update"
compdef _rsync rsync-upate=rsync 2> /dev/null
alias rsync-synchronize="${rsync_cmd} --update --delete"
compdef _rsync rsync-synchronize=rsync 2> /dev/null
unset rsync_cmd