mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 20:27:45 +00:00
HackStudio: Add C++ Language Server
The language server keeps track of the content of currently edited files by receiving updates about edit actions. Also, C++ autocompletion is no longer tied to HackStudio itself and moved to be part of the language server.
This commit is contained in:
parent
bf53d7ff64
commit
863f14788f
18 changed files with 451 additions and 21 deletions
|
@ -39,6 +39,9 @@ public:
|
|||
|
||||
String action_text() const { return m_action_text; }
|
||||
|
||||
virtual bool is_insert_text() const { return false; }
|
||||
virtual bool is_remove_text() const { return false; }
|
||||
|
||||
protected:
|
||||
Command() { }
|
||||
void set_action_text(const String& text) { m_action_text = text; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue