mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-11 07:34:32 +00:00
2740cc80d2
- Support completing dynamic make targets. - Support completing make targets when using -C/--directory. - Support `-Cdir/path`, `-C dir/path` - Support `--directory=dir/path`, `--directory dir/path` This detects if the make command have the `-p` switch otherwise it assumes it is BSD make and will run a different command to try to figure out the available targets.
37 lines
1.9 KiB
Fish
37 lines
1.9 KiB
Fish
# Completions for make
|
|
function __fish_complete_make_targets
|
|
set directory (string replace -r '^make .*(-C ?|--directory[= ]?)([^ ]*) .*$' '$2' -- $argv)
|
|
if test $status -eq 0 -a -d $directory
|
|
__fish_print_make_targets $directory
|
|
else
|
|
__fish_print_make_targets
|
|
end
|
|
end
|
|
|
|
# This completion reenables file completion on
|
|
# assignments, so e.g. 'make foo FILES=<tab>' will receive standard
|
|
# filename completion.
|
|
complete -c make -n 'commandline -ct | string match "*=*"'
|
|
|
|
complete -x -c make -a "(__fish_complete_make_targets (commandline -c))" --description "Target"
|
|
complete -r -c make -s f --description "Use file as makefile" -r
|
|
complete -x -c make -s C -l directory -x -a "(__fish_complete_directories (commandline -ct))" --description "Change directory"
|
|
complete -c make -s d --description "Debug mode"
|
|
complete -c make -s e --description "Environment before makefile"
|
|
complete -c make -s i --description "Ignore errors"
|
|
complete -x -c make -s I --description "Search directory for makefile" -a "(__fish_complete_directories (commandline -ct))"
|
|
complete -x -c make -s j --description "Number of concurrent jobs"
|
|
complete -c make -s k --description "Continue after an error"
|
|
complete -c make -s l --description "Start when load drops"
|
|
complete -c make -s n --description "Do not execute commands"
|
|
complete -c make -s o -r --description "Ignore specified file"
|
|
complete -c make -s p --description "Print database"
|
|
complete -c make -s q --description "Question mode"
|
|
complete -c make -s r --description "Eliminate implicit rules"
|
|
complete -c make -s s --description "Quiet mode"
|
|
complete -c make -s S --description "Don't continue after an error"
|
|
complete -c make -s t --description "Touch files, don't run commands"
|
|
complete -c make -s v --description "Display version and exit"
|
|
complete -c make -s w --description "Print working directory"
|
|
complete -c make -s W -r --description "Pretend file is modified"
|
|
|