From 300620416831e20c43fb7eeb95146739bd497aab Mon Sep 17 00:00:00 2001 From: Nishthajain7 Date: Wed, 29 Apr 2026 14:18:15 +0530 Subject: [PATCH] fix:Right arrow key navigation after auto-closing brackets --- client/modules/IDE/components/Editor/stateUtils.js | 1 + 1 file changed, 1 insertion(+) diff --git a/client/modules/IDE/components/Editor/stateUtils.js b/client/modules/IDE/components/Editor/stateUtils.js index 0605dd1b01..2a467e0ae1 100644 --- a/client/modules/IDE/components/Editor/stateUtils.js +++ b/client/modules/IDE/components/Editor/stateUtils.js @@ -272,6 +272,7 @@ const emmetKeymaps = [{ key: 'Tab', run: expandAbbreviation }]; /** Returns completion options configured for autocomplete. */ export const createAutocompleteOptions = (referenceBaseUrl) => ({ + selectOnOpen: false, tooltipClass: () => 'CodeMirror-hints', closeOnBlur: false, icons: false,