chore: format custom editor

This commit is contained in:
Peter Steinberger
2026-01-05 05:32:30 +01:00
parent 95d9160e27
commit bcdaba1d48

View File

@@ -36,7 +36,11 @@ export class CustomEditor extends Editor {
this.onShiftTab();
return;
}
if (matchesKey(data, Key.escape) && this.onEscape && !this.isShowingAutocomplete()) {
if (
matchesKey(data, Key.escape) &&
this.onEscape &&
!this.isShowingAutocomplete()
) {
this.onEscape();
return;
}