[PATCH] D47937: [clangd] Support proximity paths in index fuzzy find.

2018-06-12 Thread Eric Liu via Phabricator via cfe-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL334485: [clangd] Support proximity paths in index fuzzy find. (authored by ioeric, committed by ). Herald added a subscriber: llvm-commits. Repository: rL LLVM https://reviews.llvm.org/D47937 Files:

[PATCH] D47937: [clangd] Support proximity paths in index fuzzy find.

2018-06-11 Thread Sam McCall via Phabricator via cfe-commits
sammccall accepted this revision. sammccall added inline comments. This revision is now accepted and ready to land. Comment at: clangd/index/Index.h:275 + /// Contextually relevant files (e.g. the file we're code-completing in). + /// Paths should be absolute. + std::vector Pr

[PATCH] D47937: [clangd] Support proximity paths in index fuzzy find.

2018-06-11 Thread Eric Liu via Phabricator via cfe-commits
ioeric added inline comments. Comment at: clangd/index/Index.h:275 + /// Contextually relevant files (e.g. the file we're code-completing in). + /// Paths should be absolute. + std::vector ProximityPaths; sammccall wrote: > Hmm, the returned results have URIs,

[PATCH] D47937: [clangd] Support proximity paths in index fuzzy find.

2018-06-11 Thread Sam McCall via Phabricator via cfe-commits
sammccall added inline comments. Comment at: clangd/index/Index.h:275 + /// Contextually relevant files (e.g. the file we're code-completing in). + /// Paths should be absolute. + std::vector ProximityPaths; Hmm, the returned results have URIs, not paths. It

[PATCH] D47937: [clangd] Support proximity paths in index fuzzy find.

2018-06-08 Thread Eric Liu via Phabricator via cfe-commits
ioeric created this revision. ioeric added a reviewer: sammccall. Herald added subscribers: cfe-commits, jkorous, MaskRay, ilya-biryukov. Repository: rCTE Clang Tools Extra https://reviews.llvm.org/D47937 Files: clangd/CodeComplete.cpp clangd/index/Index.h Index: clangd/index/Index.h ===