blob: a2b489ec040864704f58fe3eb09bfa2a9b8733f7 (
plain)
1
2
3
4
5
6
7
|
echo ${(%):-'%F{yellow}The `%Bcopydir%b` plugin is deprecated. Use the `%Bcopypath%b` plugin instead.%f'}
source "$ZSH/plugins/copypath/copypath.plugin.zsh"
# TODO: 2022-02-22: Remove deprecated copydir function.
function copydir {
copypath
}
|