mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 06:17:34 +00:00
LanguageServers/Cpp: Complete Preprocessor definitions
Preprocessor definitions now appear in the AutoComplete suggestions box as well as in the Locator.
This commit is contained in:
parent
5b22f6f45a
commit
7bf6eca9d8
6 changed files with 26 additions and 2 deletions
|
@ -42,6 +42,7 @@ public:
|
|||
|
||||
enum class CompletionKind {
|
||||
Identifier,
|
||||
PreprocessorDefinition,
|
||||
};
|
||||
|
||||
enum class Language {
|
||||
|
@ -66,7 +67,8 @@ public:
|
|||
Function,
|
||||
Struct,
|
||||
Class,
|
||||
Variable
|
||||
Variable,
|
||||
PreprocessorDefinition,
|
||||
};
|
||||
|
||||
struct Declaration {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue