diff --git a/src/lib/components/editor/util.ts b/src/lib/components/editor/util.ts index 64e04b1b..3ede9ff9 100644 --- a/src/lib/components/editor/util.ts +++ b/src/lib/components/editor/util.ts @@ -133,14 +133,6 @@ export const initEditor = (monacoEditor): void => { ) ) .reduce((overallKeywords, nextKeyword) => ({ ...overallKeywords, ...nextKeyword }), {}), - noEatingSequenceArrows: ['-)', '--)', '->>', '-->>'].reduce( - (accumalator, arrow) => accumalator.concat(arrow, arrow + '+', arrow + '-'), - [] - ), - eatingSequenceArrows: ['->', '-x'].reduce( - (accumalator, arrow) => accumalator.concat(arrow, arrow + '+', arrow + '-'), - [] - ), tokenizer: { root: [ [/%%(?=.*%%$)/, { token: 'string', nextEmbedded: 'json' }],