Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
oh-my-zsh
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
github
oh-my-zsh
Commits
4e6e4965
Unverified
Commit
4e6e4965
authored
Sep 15, 2021
by
Marc Cornellà
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(plugins): fix `_comps` error in completion generation plugins (#10190)
Fixes #10190
parent
c21ff38b
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
55 additions
and
30 deletions
+55
-30
cargo.plugin.zsh
plugins/cargo/cargo.plugin.zsh
+11
-6
deno.plugin.zsh
plugins/deno/deno.plugin.zsh
+11
-5
fnm.plugin.zsh
plugins/fnm/fnm.plugin.zsh
+11
-6
gh.plugin.zsh
plugins/gh/gh.plugin.zsh
+11
-6
rustup.plugin.zsh
plugins/rustup/rustup.plugin.zsh
+11
-7
No files found.
plugins/cargo/cargo.plugin.zsh
View file @
4e6e4965
# COMPLETION FUNCTION
if
((
$+
commands[rustup]
&&
$+
commands[cargo]
))
;
then
if
[[
!
-f
$ZSH_CACHE_DIR
/cargo_version
]]
\
||
[[
"
$(
cargo
--version
)
"
!=
"
$(
<
"
$ZSH_CACHE_DIR
/cargo_version"
)
"
]]
\
||
[[
!
-f
$ZSH
/plugins/cargo/_cargo
]]
;
then
rustup completions zsh cargo
>
$ZSH
/plugins/cargo/_cargo
cargo
--version
>
$ZSH_CACHE_DIR
/cargo_version
ver
=
"
$(
cargo
--version
)
"
ver_file
=
"
$ZSH_CACHE_DIR
/cargo_version"
comp_file
=
"
$ZSH
/plugins/cargo/_cargo"
if
[[
!
-f
"
$comp_file
"
||
!
-f
"
$ver_file
"
||
"
$ver
"
!=
"
$(
<
"
$ver_file
"
)
"
]]
;
then
rustup completions zsh cargo
>
|
"
$comp_file
"
echo
"
$ver
"
>
|
"
$ver_file
"
fi
declare
-A
_comps
autoload
-Uz
_cargo
_comps[cargo]
=
_cargo
unset
ver ver_file comp_file
fi
plugins/deno/deno.plugin.zsh
View file @
4e6e4965
...
...
@@ -12,12 +12,18 @@ alias dup='deno upgrade'
# COMPLETION FUNCTION
if
((
$+
commands[deno]
))
;
then
if
[[
!
-f
$ZSH_CACHE_DIR
/deno_version
]]
\
||
[[
"
$(
deno
--version
)
"
!=
"
$(
<
"
$ZSH_CACHE_DIR
/deno_version"
)
"
]]
\
||
[[
!
-f
$ZSH
/plugins/deno/_deno
]]
;
then
deno completions zsh
>
$ZSH
/plugins/deno/_deno
deno
--version
>
$ZSH_CACHE_DIR
/deno_version
ver
=
"
$(
deno
--version
)
"
ver_file
=
"
$ZSH_CACHE_DIR
/deno_version"
comp_file
=
"
$ZSH
/plugins/deno/_deno"
if
[[
!
-f
"
$comp_file
"
||
!
-f
"
$ver_file
"
||
"
$ver
"
!=
"
$(
<
"
$ver_file
"
)
"
]]
;
then
deno completions zsh
>
|
"
$comp_file
"
echo
"
$ver
"
>
|
"
$ver_file
"
fi
declare
-A
_comps
autoload
-Uz
_deno
_comps[deno]
=
_deno
unset
ver ver_file comp_file
fi
plugins/fnm/fnm.plugin.zsh
View file @
4e6e4965
# COMPLETION FUNCTION
if
((
$+
commands[fnm]
))
;
then
if
[[
!
-f
$ZSH_CACHE_DIR
/fnm_version
]]
\
||
[[
"
$(
fnm
--version
)
"
!=
"
$(
<
"
$ZSH_CACHE_DIR
/fnm_version"
)
"
]]
\
||
[[
!
-f
$ZSH
/plugins/fnm/_fnm
]]
;
then
fnm completions
--shell
=
zsh
>
$ZSH
/plugins/fnm/_fnm
fnm
--version
>
$ZSH_CACHE_DIR
/fnm_version
ver
=
"
$(
fnm
--version
)
"
ver_file
=
"
$ZSH_CACHE_DIR
/fnm_version"
comp_file
=
"
$ZSH
/plugins/fnm/_fnm"
if
[[
!
-f
"
$comp_file
"
||
!
-f
"
$ver_file
"
||
"
$ver
"
!=
"
$(
<
"
$ver_file
"
)
"
]]
;
then
fnm completions
--shell
=
zsh
>
|
"
$comp_file
"
echo
"
$ver
"
>
|
"
$ver_file
"
fi
declare
-A
_comps
autoload
-Uz
_fnm
_comps[fnm]
=
_fnm
unset
ver ver_file comp_file
fi
plugins/gh/gh.plugin.zsh
View file @
4e6e4965
# Autocompletion for the GitHub CLI (gh).
if
((
$+
commands[gh]
))
;
then
if
[[
!
-r
"
$ZSH_CACHE_DIR
/gh_version"
\
||
"
$(
gh
--version
)
"
!=
"
$(
<
"
$ZSH_CACHE_DIR
/gh_version"
)
"
||
!
-f
"
$ZSH
/plugins/gh/_gh"
]]
;
then
gh completion
--shell
zsh
>
$ZSH
/plugins/gh/_gh
gh
--version
>
$ZSH_CACHE_DIR
/gh_version
ver
=
"
$(
gh
--version
)
"
ver_file
=
"
$ZSH_CACHE_DIR
/gh_version"
comp_file
=
"
$ZSH
/plugins/gh/_gh"
if
[[
!
-f
"
$comp_file
"
||
!
-f
"
$ver_file
"
||
"
$ver
"
!=
"
$(
<
"
$ver_file
"
)
"
]]
;
then
gh completion
--shell
zsh
>
|
"
$comp_file
"
echo
"
$ver
"
>
|
"
$ver_file
"
fi
declare
-A
_comps
autoload
-Uz
_gh
_comps[gh]
=
_gh
unset
ver ver_file comp_file
fi
plugins/rustup/rustup.plugin.zsh
View file @
4e6e4965
# COMPLETION FUNCTION
if
((
$+
commands[rustup]
))
;
then
if
[[
!
-f
$ZSH_CACHE_DIR
/rustup_version
]]
\
||
[[
"
$(
rustup
--version
2> /dev/null
)
"
\
!=
"
$(
<
"
$ZSH_CACHE_DIR
/rustup_version"
)
"
]]
\
||
[[
!
-f
$ZSH
/plugins/rustup/_rustup
]]
;
then
rustup completions zsh
>
$ZSH
/plugins/rustup/_rustup
rustup
--version
2> /dev/null
>
$ZSH_CACHE_DIR
/rustup_version
ver
=
"
$(
rustup
--version
2>/dev/null
)
"
ver_file
=
"
$ZSH_CACHE_DIR
/rustup_version"
comp_file
=
"
$ZSH
/plugins/rustup/_rustup"
if
[[
!
-f
"
$comp_file
"
||
!
-f
"
$ver_file
"
||
"
$ver
"
!=
"
$(
<
"
$ver_file
"
)
"
]]
;
then
rustup completions zsh
>
|
"
$comp_file
"
echo
"
$ver
"
>
|
"
$ver_file
"
fi
declare
-A
_comps
autoload
-Uz
_rustup
_comps[rustup]
=
_rustup
unset
ver ver_file comp_file
fi
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment