From 6ff293ad3acea9af54739c8147272f2d378ca779 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C4=83zvan=20C=2E=20R=C4=83dulescu?= Date: Fri, 24 Mar 2023 09:16:53 +0200 Subject: [PATCH] Add missing `in` to Godot v4.x GDScript keywrods --- rc/filetype/gdscript.kak | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rc/filetype/gdscript.kak b/rc/filetype/gdscript.kak index 760e3c26..3b30816f 100644 --- a/rc/filetype/gdscript.kak +++ b/rc/filetype/gdscript.kak @@ -69,7 +69,7 @@ add-highlighter shared/gdscript/code/ regex (get)\h*=\h*(\w+) add-highlighter shared/gdscript/code/ regex (set)\h*=\h*(\w+) 1:keyword 2:function # keywords and built-ins evaluate-commands %sh{ - keywords="as await break breakpoint class class_name const continue elif else enum extends for func if is match pass return self signal static super var void while" + keywords="as await break breakpoint class class_name const continue elif else enum extends for func if in is match pass return self signal static super var void while" values="false true null"