From 775fc216fa081146254f10379d5f26ed3b4d1202 Mon Sep 17 00:00:00 2001 From: Raymonzut <40148684+Raymonzut@users.noreply.github.com> Date: Mon, 11 Jan 2021 15:40:51 +0100 Subject: [PATCH] Match all ascii characters for var name --- grammars/mblf.cson | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/grammars/mblf.cson b/grammars/mblf.cson index 187e8d3..3f453d8 100644 --- a/grammars/mblf.cson +++ b/grammars/mblf.cson @@ -14,13 +14,13 @@ 9: name: 'string' }, { - 'match': '(^\\s*)((del)?var)\ +([[:alnum:]]+)' + 'match': '(^\\s*)((del)?var)\ +([[:ascii:]]+)' 'captures': 2: name: 'keyword.operator' 4: name: 'builtin.variable' }, { - 'match': '(^\\s*)(point(m)?|addv|subv|copy)\ +([[:alnum:]]+)' + 'match': '(^\\s*)(point(m)?|addv|subv|copy)\ +([[:ascii:]]+)' 'captures': 4: name: 'builtin.variable' },