From bcdaba1d484f09be0e8781d64a5ef333e7f7351d Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Mon, 5 Jan 2026 05:32:30 +0100 Subject: [PATCH] chore: format custom editor --- src/tui/components/custom-editor.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/tui/components/custom-editor.ts b/src/tui/components/custom-editor.ts index 7cec6718e..526584498 100644 --- a/src/tui/components/custom-editor.ts +++ b/src/tui/components/custom-editor.ts @@ -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; }