From 94e5a9e95d850bf8d7f117f6a8df6becff731023 Mon Sep 17 00:00:00 2001 From: oidro <31112680+oidro@users.noreply.github.com> Date: Thu, 2 Jun 2022 17:37:33 -0400 Subject: [PATCH] Fix operator syntax highlighting when next to an opening parenthesis (#375) --- syntaxes/GDScript.tmLanguage.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/syntaxes/GDScript.tmLanguage.json b/syntaxes/GDScript.tmLanguage.json index b9b3702..f15c423 100644 --- a/syntaxes/GDScript.tmLanguage.json +++ b/syntaxes/GDScript.tmLanguage.json @@ -220,6 +220,9 @@ { "include": "#keywords" }, + { + "include": "#logic_op" + }, { "include": "#control_flow" },