Skip to content

Commit

Permalink
[completion] complete commands skipping shared options
Browse files Browse the repository at this point in the history
  • Loading branch information
rmannibucau committed Feb 5, 2024
1 parent 96601ce commit 2cad08c
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,9 @@ private void init() {
}

private Stream<String> noSharedConfigCommandNames() {
return Stream.of("add-alveolus", "build", "cipher-password", "create-master-password", "new", "version");
return Stream.of(
"add-alveolus", "build", "cipher-password", "create-master-password", "new", "version",
"cipher", "decipher", "list-alveoli", "list-lint-rules");
}

private <T> Stream<T> stream(final Instance<T> instance) { // mvn 3.6 workaround
Expand Down

0 comments on commit 2cad08c

Please sign in to comment.