[PATCH] D75623: [clangd][VSCode] Force VSCode to use the ranking provided by clangd.
Sam McCall via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Wed Mar 4 10:05:50 PST 2020
sammccall added a comment.
I tested this with an example like:
int a_b_c;
char *abc;
int x = ab^ // prefer a_b_c due to type match.
before this patch, we see [abc, a_b_c]. After this patch, [a_b_c, abc].
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D75623/new/
https://reviews.llvm.org/D75623
More information about the cfe-commits
mailing list