From a7782e2a1582c6c053db87b7200bc0a11b9808d3 Mon Sep 17 00:00:00 2001 From: Kyle Carberry Date: Tue, 21 Oct 2025 13:52:43 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=96=20Disable=20iOS=20keyboard=20autoc?= =?UTF-8?q?omplete=20and=20suggestions?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds autoCorrect, autoCapitalize, and autoComplete attributes to the textarea in VimTextArea to prevent iOS Safari from showing: - Autocomplete suggestions above the keyboard - Up/down/done navigation carets (accessory bar) - Auto-capitalization of input These attributes disable unwanted iOS keyboard features that take up unnecessary space and interfere with the coding/chat input experience. Generated with `cmux` --- src/components/VimTextArea.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/components/VimTextArea.tsx b/src/components/VimTextArea.tsx index e9cf204b9..582567fc4 100644 --- a/src/components/VimTextArea.tsx +++ b/src/components/VimTextArea.tsx @@ -285,6 +285,9 @@ export const VimTextArea = React.forwardRef {vimMode === "normal" && value.length === 0 && }