diff options
Diffstat (limited to 'clang-tools-extra/clangd/CodeComplete.h')
-rw-r--r-- | clang-tools-extra/clangd/CodeComplete.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/clang-tools-extra/clangd/CodeComplete.h b/clang-tools-extra/clangd/CodeComplete.h index 4fb19cb1073..f89aad76cfe 100644 --- a/clang-tools-extra/clangd/CodeComplete.h +++ b/clang-tools-extra/clangd/CodeComplete.h @@ -60,6 +60,13 @@ struct CodeCompleteOptions { /// If more results are available, we set CompletionList.isIncomplete. size_t Limit = 0; + /// A visual indicator to prepend to the completion label to indicate whether + /// completion result would trigger an #include insertion or not. + struct IncludeInsertionIndicator { + std::string Insert = "•"; + std::string NoInsert = " "; + } IncludeIndicator; + // Populated internally by clangd, do not set. /// If `Index` is set, it is used to augment the code completion /// results. |