From 13408c49d90505ad8012248eb9f0aff7126f8b48 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89tienne=20Reuh=20Fildadut?= Date: Tue, 2 Jan 2024 15:55:03 +0100 Subject: [PATCH] Remove ~, ~? and @ operators --- Anselme.sublime-syntax | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/Anselme.sublime-syntax b/Anselme.sublime-syntax index 940dad5..9343d61 100755 --- a/Anselme.sublime-syntax +++ b/Anselme.sublime-syntax @@ -14,7 +14,7 @@ variables: [^0-9\s\'{{identifier_disallowed}}][^{{identifier_disallowed}}]* |\_( \! | \- | \* | \~ ) |( \! )\_ - |\_( \|\> | \+ | \- | \/ | \/\/ | \* | \^ | \% | \& | \| | \=\= | \= | \!\= | \>\= | \<\= | \< | \> | \~ | \~\? | \. | \:\: | \# | \: )\_ + |\_( \|\> | \+ | \- | \/ | \/\/ | \* | \^ | \% | \& | \| | \=\= | \= | \!\= | \>\= | \<\= | \< | \> | \. | \:\: | \# | \: )\_ ) contexts: @@ -95,10 +95,7 @@ contexts: - match: '\$' scope: keyword.declaration.anselme meta.function.anselme set: primary - - match: '\~' - scope: keyword.control.conditional.anselme - set: primary - - match: '\@|\;' + - match: '\;' scope: keyword.control.anselme set: primary - match: '\-' @@ -213,7 +210,7 @@ contexts: - match: '\,' scope: punctuation.separator.sequence.anselme push: primary - - match: '\~|\~\?|\|\>' + - match: '\|\>' scope: keyword.control.conditional.anselme push: primary - match: '\#|\:\:|\:|\-\>'