From 44785185f7ed2b6deffae9bc393922d9e92b1e71 Mon Sep 17 00:00:00 2001 From: Maxwell Jeffress Date: Sun, 25 Jan 2026 13:37:03 +1100 Subject: [PATCH] Update syntax highlighting --- vim/syntax/solstice.vim | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/vim/syntax/solstice.vim b/vim/syntax/solstice.vim index aa429c4..b642d5c 100644 --- a/vim/syntax/solstice.vim +++ b/vim/syntax/solstice.vim @@ -7,10 +7,12 @@ endif " Keywords syn keyword solsticeConditional if syn keyword solsticeRepeat while +syn keyword solsticeKeyword def struct return +syn keyword solsticeType int string bool double char syn keyword solsticeBoolean true false " Built-in functions -syn keyword solsticeBuiltin puts println input +syn keyword solsticeBuiltin puts print println input " Data Types syn match solsticeNumber "\d\+\(\.\d\+\)\=" @@ -26,6 +28,8 @@ syn match solsticeDelimiter "[{()}]" hi def link solsticeConditional Conditional hi def link solsticeRepeat Repeat +hi def link solsticeKeyword Keyword +hi def link solsticeType Type hi def link solsticeBoolean Boolean hi def link solsticeBuiltin Function hi def link solsticeNumber Number