eepp: Added Sys::getEnvironmentVariables. Improved Process class.

ecode: Fixed a bug in StatusBuildOuputController. Improvements when code completion and signature help are present at the same time.
This commit is contained in:
Martín Lucas Golini
2023-12-16 00:21:20 -03:00
parent 9e0ff076f2
commit b41cbfe1ce
7 changed files with 96 additions and 89 deletions

View File

@@ -262,10 +262,12 @@ bool AutoCompletePlugin::onKeyDown( UICodeEditor* editor, const KeyEvent& event
editor->invalidateDraw();
return true;
} else if ( event.getKeyCode() == KEY_ESCAPE ) {
resetSuggestions( editor );
resetSignatureHelp();
editor->invalidateDraw();
return true;
if ( !ret ) {
resetSuggestions( editor );
resetSignatureHelp();
editor->invalidateDraw();
return true;
}
} else if ( event.getKeyCode() == KEY_HOME ) {
mSuggestionIndex = 0;
mSuggestionsStartIndex = 0;