eepp: Added "jump-lines-up" and "jump-lines-down" commands to UICodeEditor.

ecode: Fixed display of textDocument/references (wasn't displaying non opened files). Build command will save all modified files before running.
This commit is contained in:
Martín Lucas Golini
2023-07-01 19:46:28 -03:00
parent d11c4ce865
commit c3d89d0a64
8 changed files with 87 additions and 15 deletions

View File

@@ -661,9 +661,11 @@ void ProjectBuildManager::buildCurrentConfig( StatusBuildOutputController* sboc
if ( buildIt.second.getName() == mConfig.buildName )
build = &buildIt.second;
if ( build )
if ( build ) {
mApp->saveAll();
sboc->runBuild( build->getName(), mConfig.buildType,
getOutputParser( build->getName() ) );
}
}
}