mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-23 22:17:52 +08:00
5ad292328a
Use clang/clang++'s own autocompletion support to complete arguments. It is rather convoluted as clang generates autocompletions for a portion of the current token rather than the entire token, e.g. while `--st` will autocomplete to `--std=` (which is fine by fish), `--std=g` will autocomplete to `gnu...` without the leading `--std=` which breaks fish' support for the completion. Additionally, on systems where clang/clang++ is the system compiler (such as FreeBSD), it is very often for users to invoke a newer version of clang/clang++ installed as clang[++]-NN instead of clang. Using a monkey-patched version of `complete -p` to support that without breaking (future) completions for commands like `clang-format`. Closes #4174.
17 lines
854 B
Fish
17 lines
854 B
Fish
# This function is compatible with clang, clang++, and variations thereof, and is shared
|
|
# by clang.fish and clang++.fish.
|
|
# We dynamically query the head at `(commandline -o)[1]` to get the correct completions.
|
|
function __fish_clang_complete
|
|
# If the result is for a value, clang only prints the value, so completions
|
|
# for `-std=` print `c++11` and not `-std=c++11` like we need. See #4174.
|
|
set -l prefix (commandline -ct | string replace -fr -- '^(.*=)[^=]*' '$1')
|
|
|
|
# Don't hard-code the name of the clang binary
|
|
set -l clang (commandline -o)[1]
|
|
# first get the completions from clang, with the prefix separated from the value by a comma
|
|
$clang --autocomplete=(commandline -ct | string replace -- "$prefix" "$prefix,") 2>/dev/null |
|
|
# and put it in a format that fish understands
|
|
string replace -r -- '^([^ ]+)\s*(.*)' "$prefix\$1\t\$2"
|
|
end
|
|
|