Open michael-lehn opened 1 year ago
Say I have a file foo.c
int six; int main(void) { return si
Running cat hello.c | clang -fsyntax-only -Xclang -code-completion-macros -Xclang -code-completion-at=-:3:14 -xc - will give
cat hello.c | clang -fsyntax-only -Xclang -code-completion-macros -Xclang -code-completion-at=-:3:14 -xc -
PREFERRED-TYPE: int COMPLETION: six : [#int#]six COMPLETION: Pattern : [#size_t#]sizeof(<#expression-or-type#>)
However, vim-clang seems to filter out the Pattern result. So I get six as only match.
vim-clang
Pattern
six
Say I have a file foo.c
Running
cat hello.c | clang -fsyntax-only -Xclang -code-completion-macros -Xclang -code-completion-at=-:3:14 -xc -
will giveHowever,
vim-clang
seems to filter out thePattern
result. So I getsix
as only match.