File tree 3 files changed +7
-2
lines changed
3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ complete -f -c exercism -n "__fish_seen_subcommand_from download" -s u -l uuid -
15
15
16
16
# Help
17
17
complete -f -c exercism -n " __fish_use_subcommand" -a " help" -d " Shows a list of commands or help for one command"
18
- complete -f -c exercism -n " __fish_seen_subcommand_from help" -a " configure download help open submit troubleshoot upgrade version workspace"
18
+ complete -f -c exercism -n " __fish_seen_subcommand_from help" -a " configure download help open submit test troubleshoot upgrade version workspace"
19
19
20
20
# Open
21
21
complete -f -c exercism -n " __fish_use_subcommand" -a " open" -d " Opens a browser to exercism.io for the specified submission."
@@ -25,6 +25,10 @@ complete -f -c exercism -n "__fish_seen_subcommand_from open" -s h -l help -d "h
25
25
complete -f -c exercism -n " __fish_use_subcommand" -a " submit" -d " Submits a new iteration to a problem on exercism.io."
26
26
complete -f -c exercism -n " __fish_seen_subcommand_from submit" -s h -l help -d " help for submit"
27
27
28
+ # Test
29
+ complete -f -c exercism -n " __fish_use_subcommand" -a " test" -d " Run the exercise's tests."
30
+ complete -f -c exercism -n " __fish_seen_subcommand_from submit" -s h -l help -d " help for test"
31
+
28
32
# Troubleshoot
29
33
complete -f -c exercism -n " __fish_use_subcommand" -a " troubleshoot" -d " Outputs useful debug information."
30
34
complete -f -c exercism -n " __fish_seen_subcommand_from troubleshoot" -s f -l full-api-key -d " display full API key (censored by default)"
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ _exercism () {
7
7
opts=" --verbose --timeout"
8
8
9
9
commands=" configure download open
10
- submit troubleshoot upgrade version workspace help"
10
+ submit test troubleshoot upgrade version workspace help"
11
11
config_opts=" --show"
12
12
version_opts=" --latest"
13
13
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ options=(configure:"Writes config values to a JSON file."
8
8
download:" Downloads and saves a specified submission into the local system"
9
9
open:" Opens a browser to exercism.io for the specified submission."
10
10
submit:" Submits a new iteration to a problem on exercism.io."
11
+ test:" Run the exercise's tests."
11
12
troubleshoot:" Outputs useful debug information."
12
13
upgrade:" Upgrades to the latest available version."
13
14
version:" Outputs version information."
You can’t perform that action at this time.
0 commit comments