Looping TCO for singleton components

This commit is contained in:
2026-02-26 22:14:25 -08:00
parent c4ff0c7c8c
commit 7a763bf40a
4 changed files with 93 additions and 15 deletions

View File

@@ -1,8 +1,6 @@
syn keyword newtInfix infix infixl infixr
syn keyword newtKW data where let in case of
syn keyword newtLet let in
syn keyword newtKW data where let in case of derive module import
syn match newtIdentifier "[a-zA-Z][a-zA-Z]*" contained
syn keyword newtStructure data import module where
syn region newtBlockComment start="/-" end="-/" contained
syn match newtLineComment "--.*$" contains=@Spell
@@ -11,7 +9,7 @@ syn match newtLineComment "--.*$" contains=@Spell
highlight def link newtInfix PreProc
highlight def link newtBlockComment Comment
highlight def link newtLineComment Comment
highlight def link newtLet Structure
highlight def link newtStructure Structure
highlight def link newtStructure Keyword
highlight def link newtKW Keyword
let b:current_syntax = "newt"