diff --git a/app/renderer/src/main/src/utils/monacoSpec/yakEditor.ts b/app/renderer/src/main/src/utils/monacoSpec/yakEditor.ts index 4efcb2f333..a66b1ebba4 100644 --- a/app/renderer/src/main/src/utils/monacoSpec/yakEditor.ts +++ b/app/renderer/src/main/src/utils/monacoSpec/yakEditor.ts @@ -322,15 +322,16 @@ export const setUpYaklangMonaco = () => { [/[\/*]/, 'comment.doc'] ], + // disable fuzztag because of monaco editor bug xrawstring: [ - [/{{/, "fuzz.tag.inner", "@fuzz_tag"], + // [/{{/, "fuzz.tag.inner", "@fuzz_tag"], [/@escapes/, 'string.escape'], [/[^`]/, 'string'], [/`/, 'string', '@pop'] ], xstring: [ - [/{{/, "fuzz.tag.inner", "@fuzz_tag"], + // [/{{/, "fuzz.tag.inner", "@fuzz_tag"], [/@escapes/, 'string.escape'], [/[^\\"]+/, 'string'], [/\\./, 'string.escape.invalid'], @@ -338,7 +339,7 @@ export const setUpYaklangMonaco = () => { ], xstring2: [ - [/{{/, "fuzz.tag.inner", "@fuzz_tag"], + // [/{{/, "fuzz.tag.inner", "@fuzz_tag"], [/@escapes/, 'string.escape'], [/[^\\']/, 'string'], [/'/, 'string', '@pop']