mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 15:14:44 +00:00
aa65856ee0
Before: * hand write arg parse * only accepts one suffix After: * use `arg_parse` to parse args * accepts multi suffixes Closes #9611.
12 lines
726 B
Fish
12 lines
726 B
Fish
# Multiple versions are often installed as clang, clang-7, clang-8, etc.
|
|
# They won't be autoloaded, but once clang++ is used once, they'll gain completions too.
|
|
# This could potentially be moved to __fish_config_interactive.fish in the future.
|
|
|
|
# This pattern unfortunately matches clang-format, etc. as well.
|
|
complete -p '*clang*' -n __fish_should_complete_switches -xa '(__fish_complete_clang)'
|
|
complete -c clang -n 'not __fish_should_complete_switches' \
|
|
-k -xa "(__fish_complete_suffix .o .out .c .cpp .so .dylib)"
|
|
|
|
# again but without the -x this time for the pattern-matched completion
|
|
complete -p '*clang*' -n 'not __fish_should_complete_switches' \
|
|
-k -a "(__fish_complete_suffix .o .out .c .cpp .so .dylib)"
|