Skip to content

Commit

Permalink
fix: typo in {bash,zsh}_completions.go (#1459)
Browse files Browse the repository at this point in the history
* Fix typo in bash_completions.go
* Fix the same typo in zsh_completions.go
  • Loading branch information
favonia committed Dec 7, 2021
1 parent c3573e2 commit c7a4421
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bash_completions.go
Expand Up @@ -134,7 +134,7 @@ __%[1]s_handle_go_custom_completion()
$filteringCmd
elif [ $((directive & shellCompDirectiveFilterDirs)) -ne 0 ]; then
# File completion for directories only
local subDir
local subdir
# Use printf to strip any trailing newline
subdir=$(printf "%%s" "${out[0]}")
if [ -n "$subdir" ]; then
Expand Down
2 changes: 1 addition & 1 deletion zsh_completions.go
Expand Up @@ -202,7 +202,7 @@ _%[1]s()
_arguments '*:filename:'"$filteringCmd"
elif [ $((directive & shellCompDirectiveFilterDirs)) -ne 0 ]; then
# File completion for directories only
local subDir
local subdir
subdir="${completions[1]}"
if [ -n "$subdir" ]; then
__%[1]s_debug "Listing directories in $subdir"
Expand Down

0 comments on commit c7a4421

Please sign in to comment.