mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-12 08:50:08 +00:00
6f1036293c
BREAKING CHANGE: the `copydir` plugin is deprecated. Instead of using `copydir`, use `copypath` which also supports copying the path of other files or directories specified.
7 lines
246 B
Bash
7 lines
246 B
Bash
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
|
|
}
|