diff options
Diffstat (limited to 'clang-tools-extra/clangd/index/Index.h')
-rw-r--r-- | clang-tools-extra/clangd/index/Index.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/clang-tools-extra/clangd/index/Index.h b/clang-tools-extra/clangd/index/Index.h index b74941cc2f0..b12d9218564 100644 --- a/clang-tools-extra/clangd/index/Index.h +++ b/clang-tools-extra/clangd/index/Index.h @@ -271,6 +271,9 @@ struct FuzzyFindRequest { size_t MaxCandidateCount = UINT_MAX; /// If set to true, only symbols for completion support will be considered. bool RestrictForCodeCompletion = false; + /// Contextually relevant files (e.g. the file we're code-completing in). + /// Paths should be absolute. + std::vector<std::string> ProximityPaths; }; struct LookupRequest { |