System::Process now supports set working directory.

ecode: Started working on the LSP plugin. Some minor refactor. Fixed "Editor Font Size". Fixed Formatter and Linter in single thread mode.
This commit is contained in:
Martín Lucas Golini
2022-10-28 02:16:00 -03:00
parent bc9ea14969
commit 37e27ad670
21 changed files with 478 additions and 138 deletions

View File

@@ -31,7 +31,7 @@ FormatterPlugin::FormatterPlugin( const PluginManager* pluginManager ) :
#if FORMATTER_THREADED
mPool->run( [&, pluginManager] { load( pluginManager ); }, [] {} );
#else
load( formattersPath );
load( pluginManager );
#endif
}