diff options
| author | Shohei YOSHIDA <syohex@gmail.com> | 2022-12-26 10:53:54 +0900 |
|---|---|---|
| committer | Shohei YOSHIDA <syohex@gmail.com> | 2022-12-26 10:53:54 +0900 |
| commit | 0491bd2cbedb82997573e63d72167654c4b88666 (patch) | |
| tree | f7e007648b594af52dec67f4238afe2ae928c3a0 /src/_bundle | |
| parent | Merge pull request #973 from zsh-users/update-sbt (diff) | |
| download | zsh-completions-0491bd2cbedb82997573e63d72167654c4b88666.tar zsh-completions-0491bd2cbedb82997573e63d72167654c4b88666.tar.gz zsh-completions-0491bd2cbedb82997573e63d72167654c4b88666.tar.bz2 zsh-completions-0491bd2cbedb82997573e63d72167654c4b88666.tar.lz zsh-completions-0491bd2cbedb82997573e63d72167654c4b88666.tar.xz zsh-completions-0491bd2cbedb82997573e63d72167654c4b88666.tar.zst zsh-completions-0491bd2cbedb82997573e63d72167654c4b88666.zip | |
Update bundle completion
bundle gem --ext option should take language c or rust now
Diffstat (limited to 'src/_bundle')
| -rw-r--r-- | src/_bundle | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/_bundle b/src/_bundle index 0231f15..f6dbb64 100644 --- a/src/_bundle +++ b/src/_bundle @@ -28,7 +28,7 @@ # Description # ----------- # -# Completion script for Bundler 2.3.14 (https://bundler.io/). +# Completion script for Bundler 2.4.1 (https://bundler.io/). # # ------------------------------------------------------------------------------ # Authors @@ -304,10 +304,10 @@ case $state in '(--exe -b --bin --no-exe)--no-exe[do not create a binary]' \ '(--no-coc)--coc[add a CODE_OF_CONDUCT.md to the root of the generated project]' \ '(--coc)--no-coc[do not create a CODE_OF_CONDUCT.md]' \ - '(--no-ext)--ext[add boilerplate for C extension code to the generated project]' \ - '(--ext)--no-ext[do not add C extension code]' \ - '(--no-mit)--mit[add an MIT license to a LICENSE.txt file in the root of the generated project]' \ - '(--mit)--no-mit[do not create a LICENSE.txt]' \ + '(--no-ext --ext)--ext=[add boilerplate for C or Rust extension code to the generated project]: :(c rust)' \ + '(--ext --no-ext)--no-ext[do not add extension code]' \ + '(--no-mit --mit)--mit[add an MIT license to a LICENSE.txt file in the root of the generated project]' \ + '(--mit --no-mit)--no-mit[do not create a LICENSE.txt]' \ '(-t --test)'{-t,--test}=-'[specify the test framework]: :(minitest rspec test-unit)' \ '--ci=-[specify the continuous integration service]: :(github travis gitlab circle)' \ '--linter=-[specify the linter and code formatter]: :(rubocop standard)' \ |
