diff --git a/CHANGELOG.md b/CHANGELOG.md index 484b9f4..71c09f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ _Currently in development._ ### Features +- Added missing puppet and remotesync keywords - Added a command to insert a path to a project file, either using `project-find-file` if `projectile` is available, otherwise with `find-file`. - Added a command to format a selected region with `gdformat`. - Added syntax highlighting for function calls. diff --git a/gdscript-keywords.el b/gdscript-keywords.el index 75e2740..9bfcefc 100644 --- a/gdscript-keywords.el +++ b/gdscript-keywords.el @@ -33,7 +33,7 @@ (defconst gdscript-keywords '("and" "as" "assert" "break" "breakpoint" "case" "class" "class_name" "const" "continue" "do" "elif" "else" "enum" "export" "extends" "false" "for" "func" "if" "in" "is" -"master" "match" "not" "onready" "or" "pass" "preload" "remote" "return" "self" "setget" "signal" +"master" "match" "not" "onready" "or" "pass" "preload" "puppet" "remote" "remotesync" "return" "self" "setget" "signal" "slave" "static" "switch" "sync" "tool" "true" "var" "while" "yield")) (defconst gdscript-built-in-constants '("INF" "NAN" "PI" "TAU")) ;; Only contains types that are not classes and that the Godot editor highlights