mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-01 13:49:16 +00:00
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:
parent
ccd491594f
commit
c003c3c76d
Notes:
sideshowbarker
2024-07-18 17:32:52 +09:00
Author: https://github.com/itamar8910
Commit: c003c3c76d
Pull-request: https://github.com/SerenityOS/serenity/pull/7383
Reviewed-by: https://github.com/gunnarbeutner
4 changed files with 64 additions and 1 deletions
|
@ -23,6 +23,8 @@ public:
|
|||
enum class CompletionKind {
|
||||
Identifier,
|
||||
PreprocessorDefinition,
|
||||
SystemInclude,
|
||||
ProjectInclude,
|
||||
};
|
||||
|
||||
enum class Language {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue