mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-08-18 06:55:48 +03:00
Disable async IO in process until I figure it out why is crashing on WINE.
ecode: Added an option to allow project files filtered by .gitignore
This commit is contained in:
@@ -948,7 +948,7 @@ bool LSPClientServer::start() {
|
||||
cmd += mLSP.commandParameters;
|
||||
}
|
||||
bool ret =
|
||||
mProcess.create( cmd, Process::getDefaultOptions() | Process::EnableAsync, {}, mRootPath );
|
||||
mProcess.create( cmd, Process::getDefaultOptions(), {}, mRootPath );
|
||||
if ( ret && mProcess.isAlive() ) {
|
||||
mProcess.startAsyncRead(
|
||||
[this]( const char* bytes, size_t n ) { readStdOut( bytes, n ); },
|
||||
|
||||
Reference in New Issue
Block a user