AutoYADM commit: 2025-03-28 18:45:08
This commit is contained in:
parent
393973db39
commit
4606237776
78 changed files with 2856 additions and 1 deletions
23
.config/fish/completions/projectdo.fish
Normal file
23
.config/fish/completions/projectdo.fish
Normal file
|
@ -0,0 +1,23 @@
|
|||
complete -c projectdo --no-files
|
||||
|
||||
set -l commands build run test tool
|
||||
|
||||
# Options
|
||||
complete -c projectdo -n "not __fish_seen_subcommand_from $commands" \
|
||||
-s h -l help -d 'Display usage information'
|
||||
complete -c projectdo -n "not __fish_seen_subcommand_from $commands" \
|
||||
-s d -l 'dry-run' -d 'Do not execute any commands with side-effects'
|
||||
complete -c projectdo -n "not __fish_seen_subcommand_from $commands" \
|
||||
-s q -l quiet -d 'Do not print commands before execution'
|
||||
complete -c projectdo -n "not __fish_seen_subcommand_from $commands" \
|
||||
-s v -l version -d 'Dsiplay the version'
|
||||
|
||||
# Actions
|
||||
complete -c projectdo -n "not __fish_seen_subcommand_from $commands" \
|
||||
-a build -d 'Build the current project'
|
||||
complete -c projectdo -n "not __fish_seen_subcommand_from $commands" \
|
||||
-a run -d 'Run the current project'
|
||||
complete -c projectdo -n "not __fish_seen_subcommand_from $commands" \
|
||||
-a test -d 'Test the current project'
|
||||
complete -c projectdo -n "not __fish_seen_subcommand_from $commands" \
|
||||
-a tool -d 'Invoke the tool corresponding to the current project'
|
Loading…
Add table
Add a link
Reference in a new issue