Add SQL, Erlang, and Forth highlighter implementations and tests for LSP process and transport handling.
- Added highlighters for new languages (SQL, Erlang, Forth) with filetype recognition. - Updated and reorganized syntax files to maintain consistency and modularity. - Introduced LSP transport framing unit tests and JSON decoding/dispatch tests. - Refactored `LspManager`, integrating UTF-16/UTF-8 position conversions and robust diagnostics handling. - Enhanced server start/restart logic with workspace root detection and logging to improve LSP usability.
This commit is contained in:
@@ -15,6 +15,12 @@ public:
|
||||
|
||||
bool Poll(MappedInput &out) override;
|
||||
|
||||
|
||||
void SetUtf8Enabled(bool on)
|
||||
{
|
||||
utf8_enabled_ = on;
|
||||
}
|
||||
|
||||
private:
|
||||
bool decode_(MappedInput &out);
|
||||
|
||||
@@ -30,6 +36,8 @@ private:
|
||||
bool uarg_had_digits_ = false; // whether any digits were supplied
|
||||
int uarg_value_ = 0; // current absolute value (>=0)
|
||||
std::string uarg_text_; // raw digits/minus typed for status display
|
||||
|
||||
bool utf8_enabled_ = true;
|
||||
};
|
||||
|
||||
#endif // KTE_TERMINAL_INPUT_HANDLER_H
|
||||
#endif // KTE_TERMINAL_INPUT_HANDLER_H
|
||||
Reference in New Issue
Block a user