From cfa1d0de53d61dd4ce0b4db2be591195e80725e2 Mon Sep 17 00:00:00 2001 From: sachin1801 Date: Tue, 2 Dec 2025 16:43:28 -0500 Subject: [PATCH] fix: removed text find and replace functionality and keyboard shortcuts ( disabled in code not removed ) --- src/components/element/VmIde.vue | 12 ++++--- .../pages/ide/KeyboardShortcutsModal.vue | 5 +-- .../element/pages/ide/TwoHeaderMenu.vue | 32 ++++++++++--------- .../element/pages/ide/editor/CodeEditor.vue | 3 +- 4 files changed, 30 insertions(+), 22 deletions(-) diff --git a/src/components/element/VmIde.vue b/src/components/element/VmIde.vue index 63f7f16..9027438 100644 --- a/src/components/element/VmIde.vue +++ b/src/components/element/VmIde.vue @@ -2775,14 +2775,18 @@ export default { } }, handleFind() { + // TEMPORARILY DISABLED FOR FILE HANDLING ASSIGNMENT // Open custom Find/Replace modal in find mode - this.findReplaceMode = 'find'; - this.showFindReplaceModal = true; + // this.findReplaceMode = 'find'; + // this.showFindReplaceModal = true; + console.log('[FIND DISABLED] Find feature temporarily disabled for file handling assignment'); }, handleReplace() { + // TEMPORARILY DISABLED FOR FILE HANDLING ASSIGNMENT // Open custom Find/Replace modal in replace mode - this.findReplaceMode = 'replace'; - this.showFindReplaceModal = true; + // this.findReplaceMode = 'replace'; + // this.showFindReplaceModal = true; + console.log('[REPLACE DISABLED] Replace feature temporarily disabled for file handling assignment'); }, handleComment() { // Toggle comment in the active editor diff --git a/src/components/element/pages/ide/KeyboardShortcutsModal.vue b/src/components/element/pages/ide/KeyboardShortcutsModal.vue index f6615cc..10d4358 100644 --- a/src/components/element/pages/ide/KeyboardShortcutsModal.vue +++ b/src/components/element/pages/ide/KeyboardShortcutsModal.vue @@ -65,14 +65,15 @@ Paste Ctrl+V -
+ + + +