mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-06-01 02:56:28 +03:00
eepp: Improvements in Process. Some minor performance improvements.
ecode : Fixes in XML Tools. Fixes in Linter Plugin.
This commit is contained in:
@@ -830,6 +830,12 @@ void LSPClientPlugin::loadLSPConfig( std::vector<LSPDefinition>& lsps, const std
|
||||
|
||||
if ( j.contains( "config" ) ) {
|
||||
auto& config = j["config"];
|
||||
|
||||
if ( config.contains( "silent" ) )
|
||||
mSilence = config.value( "silent", false );
|
||||
else if ( updateConfigFile )
|
||||
config["silent"] = mSilence;
|
||||
|
||||
if ( config.contains( "hover_delay" ) )
|
||||
setHoverDelay( Time::fromString( config["hover_delay"].get<std::string>() ) );
|
||||
else if ( updateConfigFile )
|
||||
|
||||
Reference in New Issue
Block a user