mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-26 10:43:47 +08:00
ef614ba2d9
Don't unconditionally execute the plumbing to get `rustc -C` completions (use it only when trying to complete `rustc -C`), filter out deprecated options, and use fewer calls to the `string` builtin to optimize further. Need to do the same thing for the `-Z` completions next, those hang the shell for a good 1.5+ seconds.
64 lines
3.1 KiB
Fish
64 lines
3.1 KiB
Fish
complete -c rustc -s h -l help
|
|
|
|
complete -c rustc -x -l cfg
|
|
complete -c rustc -x -l check-cfg -d "Provide list of expected cfgs for checking"
|
|
complete -c rustc -r -s L -a 'dependency= crate= native= framework= all='
|
|
complete -c rustc -x -s l -a 'dylib= static= framework='
|
|
complete -c rustc -x -l crate-type -a 'bin lib rlib dylib cdylib staticlib proc-macro'
|
|
complete -c rustc -r -l crate-name
|
|
complete -c rustc -x -l edition -a '2015 2018 2021' -d "Specify compiler edition"
|
|
complete -c rustc -x -l emit -a 'asm llvm-bc llvm-ir obj link dep-info metadata mir'
|
|
set -l rustc_print_infos \
|
|
crate-name file-names sysroot target-libdir cfg calling-conventions \
|
|
target-list target-cpus target-features relocation-models code-models \
|
|
tls-models target-spec-json all-target-specs-json native-static-libs \
|
|
stack-protector-strategies link-args deployment-target
|
|
complete -c rustc -x -l print -a "$rustc_print_infos" -d "Print compiler information"
|
|
complete -c rustc -s g -d "Equivalent to -C debuginfo=2"
|
|
complete -c rustc -s O -d "Equivalent to -C opt-level=2"
|
|
complete -c rustc -r -s o -d "Write output to <filename>"
|
|
complete -c rustc -r -l out-dir
|
|
complete -c rustc -x -l explain
|
|
complete -c rustc -l test
|
|
complete -c rustc -l target
|
|
complete -c rustc -x -l cap-lints
|
|
complete -c rustc -s V -l version -d 'Print version info and exit'
|
|
complete -c rustc -s v -l verbose -d 'Use verbose output'
|
|
complete -c rustc -f -l extern
|
|
complete -c rustc -f -l sysroot
|
|
complete -c rustc -x -l color -a 'auto always never'
|
|
|
|
complete -c rustc -s C -l codegen -xa "(rustc -C help 2>/dev/null | string match -rv 'option is deprecated' | string replace -rf -i '(\s+)-C\s*(.+)=val(\s+)--(\s+)([^\n]+)' '\$2='\t'\$5')"
|
|
|
|
# rustc -Z is only available with the nightly toolchain, which may not be installed
|
|
if rustc +nightly >/dev/null 2>&1
|
|
set -l rust_docs (rustc +nightly -Z help 2>/dev/null \
|
|
| string replace -r -i '(\s+)-Z(.+)--(\s+)([^\n]+)' '$2 $4' \
|
|
| string trim \
|
|
| string match -r '^.*[^:]$')
|
|
|
|
for line in $rust_docs
|
|
set -l docs (string split -m 1 ' ' -- $line)
|
|
set -l flag (string replace -r '^([a-z\-]+\=|[a-z\-]+)(.*)' '$1' \
|
|
$docs[1])
|
|
complete -c rustc -x -s Z -a (string escape -- "$flag") -d "$docs[2]"
|
|
end
|
|
end
|
|
|
|
set -l rust_docs (rustc -W help 2>/dev/null \
|
|
| string match -r \
|
|
'(?:\s+)(?:.+)(?:\s+)(?:allow|warn|deny|forbid)(?:\s+){2}(?:[^\n]+)' \
|
|
| string replace -r -i \
|
|
'(\s+)(.+)(\s+)(allow|warn|deny|forbid)(\s+){2}([^\n]+)' '$2 $6' \
|
|
| string match -r '^.*[^:]$' \
|
|
| string match -r -v '^(allow|warn|deny|forbid)$' \
|
|
| string match -r -v '^([a-z\-]+)(\s+)(allow|warn|deny|forbid)')
|
|
|
|
for line in $rust_docs
|
|
set -l docs (string split -m 1 ' ' -- $line)
|
|
complete -c rustc -x -s W -l warn -a (string escape -- "$docs[1]") -d "$docs[2]"
|
|
complete -c rustc -x -s A -l allow -a (string escape -- "$docs[1]") -d "$docs[2]"
|
|
complete -c rustc -x -s D -l deny -a (string escape -- "$docs[1]") -d "$docs[2]"
|
|
complete -c rustc -x -s F -l forbid -a (string escape -- "$docs[1]") -d "$docs[2]"
|
|
end
|