mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 08:20:09 +00:00
fix escaping
This commit is contained in:
parent
5d0b90a7ef
commit
440d8ef344
1 changed files with 1 additions and 1 deletions
|
@ -421,7 +421,7 @@ local -a commands;commands=(
|
||||||
'verify-project:check Cargo.toml'
|
'verify-project:check Cargo.toml'
|
||||||
'version:show version information'
|
'version:show version information'
|
||||||
'yank:remove pushed file from index'
|
'yank:remove pushed file from index'
|
||||||
$( cargo --list | sed -n '1!p' | tr -d ' ' | egrep -v "^bench$|^build$|^clean$|^doc$|^fetch$|^generate-lockfile$|^git-checkout$|^help$|^init$|^install$|^locate-project$|^login$|^metadata$|^new$|^owner$|^package$|^pkgid$|^publish$|^read-manifest$|^run$|^rustc$|^rustdoc$|^search$|^test$|^uninstall$|^update$|^verify-project$|^version$|^yank$" | sed -r "s/(.*)/echo \"\1:$\(cargo help \1 2>&1 | head -n 1\)\"/" | sh )
|
$( cargo --list | sed -n '1!p' | tr -d ' ' | egrep -v "^bench$|^build$|^clean$|^doc$|^fetch$|^generate-lockfile$|^git-checkout$|^help$|^init$|^install$|^locate-project$|^login$|^metadata$|^new$|^owner$|^package$|^pkgid$|^publish$|^read-manifest$|^run$|^rustc$|^rustdoc$|^search$|^test$|^uninstall$|^update$|^verify-project$|^version$|^yank$" | sed -r "s/(.*)/echo \"\1:$\(cargo help \1 2>\&1 | head -n 1\)\"/" | sh )
|
||||||
)
|
)
|
||||||
_describe 'command' commands
|
_describe 'command' commands
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue