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:
Martín Lucas Golini
2023-02-12 23:00:20 -03:00
parent bc2b411875
commit c86e383919
5 changed files with 34 additions and 17 deletions

View File

@@ -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 ); },