moveCodeActionSelection method
Implementation
bool moveCodeActionSelection(int delta) {
if (_codeActions.isEmpty || delta == 0) return false;
_codeActionIndex = (_codeActionIndex + delta) % _codeActions.length;
if (_codeActionIndex < 0) _codeActionIndex += _codeActions.length;
return true;
}