mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-08-18 06:55:48 +03:00
Added C3 syntax highlighting and LSP support.
Refactored TextUndoStack, now uses std::variant and avoids heap allocating each command. Fix possible crash in Process::readAll. Fix SyntaxDefinition::setSymbols. Some minor improvements for Odin and Ü syntax definitions. Fix Git plugin silent configuration.
This commit is contained in:
@@ -752,7 +752,7 @@ static LSPMarkupContent parseMarkupContent( const json& v ) {
|
||||
|
||||
static LSPHover parseHover( const json& result ) {
|
||||
LSPHover ret;
|
||||
if ( result.is_null() || !result.contains( "contains" ) )
|
||||
if ( result.is_null() || result.empty() )
|
||||
return ret;
|
||||
|
||||
if ( result.contains( MEMBER_RANGE ) )
|
||||
|
||||
Reference in New Issue
Block a user