From bb5189f511249e5093fce5beaec47747a876380e Mon Sep 17 00:00:00 2001 From: zhf <1204297681@qq.com> Date: Thu, 17 Apr 2025 15:25:41 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E4=BB=A3=E7=A0=81?= =?UTF-8?q?=E7=BC=96=E8=BE=91=E5=99=A8=E6=96=B9=E6=B3=95=E5=8F=82=E6=95=B0?= =?UTF-8?q?=E6=9C=AA=E6=8F=90=E7=A4=BA=E5=BC=82=E5=B8=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/ai-code/src/monaco-editor/monaco-editor.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/ai-code/src/monaco-editor/monaco-editor.tsx b/packages/ai-code/src/monaco-editor/monaco-editor.tsx index 92b5b9d4..766cee63 100644 --- a/packages/ai-code/src/monaco-editor/monaco-editor.tsx +++ b/packages/ai-code/src/monaco-editor/monaco-editor.tsx @@ -547,7 +547,9 @@ export const IBizAICode = defineComponent({ }, suggest: { preview: true, + matchOnWordStartOnly: false, }, + quickSuggestions: true, readOnly: hasEnableEdit.value ? readonlyState.value : props.readonly || props.disabled, // 只读 -- Gitee