[bash-completion] Fix tab separation on macOS
We have a regex that needs to match a tab character in the command output, but on macOS sed doesn't support '\t', causing it to split on the 't' character instead. Fix by having bash expand the \t first. llvm-svn: 333202
This commit is contained in:
parent
b8c7c9c369
commit
0486c8c3af
@ -38,7 +38,8 @@ _clang()
|
||||
|
||||
# expand ~ to $HOME
|
||||
eval local path=${COMP_WORDS[0]}
|
||||
flags=$( "$path" --autocomplete="$arg" 2>/dev/null | sed -e 's/\t.*//' )
|
||||
# Use $'\t' so that bash expands the \t for older versions of sed.
|
||||
flags=$( "$path" --autocomplete="$arg" 2>/dev/null | sed -e $'s/\t.*//' )
|
||||
# If clang is old that it does not support --autocomplete,
|
||||
# fall back to the filename completion.
|
||||
if [[ "$?" != 0 ]]; then
|
||||
|
Loading…
x
Reference in New Issue
Block a user