syntax: import keyword

This commit is contained in:
sfja 2025-09-23 21:24:09 +02:00
parent a72790476c
commit 3560718575
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ if exists("b:current_syntax")
endif
syn keyword Keyword fn call return loop for break if let do list
syn keyword Keyword fn call return loop for break if let do list import
syn keyword Operator and or not
syn keyword Special null
syn keyword Boolean true false

View File

@ -23,7 +23,7 @@
"patterns": [
{
"name": "keyword.control.phi",
"match": "\\b(fn|return|loop|for|break|if|do|call|list)\\b"
"match": "\\b(fn|return|loop|for|break|if|do|call|list|import)\\b"
},
{
"name": "storage.type.phi",