CppLanguageServer+LibGUI: Autocomplete #include paths

The C++ language-server can now autocomplete include paths.

Paths that start with '<' will be searched in /usr/include, and paths
that start with '"' will be searched in the project's root directory.
This commit is contained in:
Itamar 2021-05-22 11:27:54 +03:00 committed by Andreas Kling
commit c003c3c76d
Notes: sideshowbarker 2024-07-18 17:32:52 +09:00
4 changed files with 64 additions and 1 deletions

View file

@ -23,6 +23,8 @@ public:
enum class CompletionKind {
Identifier,
PreprocessorDefinition,
SystemInclude,
ProjectInclude,
};
enum class Language {