From 8f9e5af32d6e2ef28b27cd9915aa8adacc3ae8fc Mon Sep 17 00:00:00 2001 From: Thomas Teixeira Date: Wed, 31 Jul 2024 09:31:43 +0200 Subject: [PATCH] Remove incorrect special case See https://github.com/gleam-lang/vscode-gleam/pull/86#issuecomment-2258635040 > @lpil > Oh, that's a mistake. Nil, True, and False should not get special treatment. I will fix that bug. --- syntax/gleam.vim | 4 ---- 1 file changed, 4 deletions(-) diff --git a/syntax/gleam.vim b/syntax/gleam.vim index 880c065e..607eb0f6 100644 --- a/syntax/gleam.vim +++ b/syntax/gleam.vim @@ -67,10 +67,6 @@ highlight link gleamOperator Operator syntax match gleamOperator "\.\.\|<>\||" highlight link gleamOperator Operator -" Values -syntax keyword gleamValues True False Nil -highlight def link gleamValues Boolean - " Type syntax match gleamType "\<[A-Z][a-zA-Z0-9]*\>" highlight link gleamType Identifier