fix help item completion

This commit is contained in:
Shohei YOSHIDA 2026-03-19 19:01:53 +09:00
parent bce05f9352
commit be63667ca5
No known key found for this signature in database
GPG Key ID: C9A1BB11BB940CF2
1 changed files with 2 additions and 0 deletions

View File

@ -626,6 +626,8 @@ elif [[ $words[2] == --build ]] ; then
_cmake_on_build _cmake_on_build
elif [[ $words[2] == --install ]] ; then elif [[ $words[2] == --install ]] ; then
_cmake_on_install _cmake_on_install
elif [[ $words[2] == --help-* ]] ; then
_arguments "$cmake_help_actions[@]"
else else
_arguments "$cmake_build_options[@]" _arguments "$cmake_build_options[@]"
fi fi