mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-23 14:20:08 +00:00
refactor():Changed variable name according to guidelines
This commit is contained in:
parent
235b8cf4de
commit
9cd054ddc0
1 changed files with 3 additions and 3 deletions
|
@ -6,12 +6,12 @@ fi
|
|||
###-begin-cdk-completions-###
|
||||
_cdk_yargs_completions()
|
||||
{
|
||||
local reply
|
||||
local completion_suggestions
|
||||
local si=$IFS
|
||||
IFS=$'
|
||||
' reply=($(COMP_CWORD="$((CURRENT-1))" COMP_LINE="$BUFFER" COMP_POINT="$CURSOR" cdk --get-yargs-completions "${words[@]}"))
|
||||
' completion_suggestions=($(COMP_CWORD="$((CURRENT-1))" COMP_LINE="$BUFFER" COMP_POINT="$CURSOR" cdk --get-yargs-completions "${words[@]}"))
|
||||
IFS=$si
|
||||
_describe 'values' reply
|
||||
_describe 'values' completion_suggestions
|
||||
}
|
||||
compdef _cdk_yargs_completions cdk
|
||||
###-end-cdk-completions-###
|
||||
|
|
Loading…
Reference in a new issue