From 28e44c46e2d98b236eadca1586361cfcfa8f2ed7 Mon Sep 17 00:00:00 2001 From: Linus Eriksson Date: Mon, 29 Oct 2018 21:16:41 +0100 Subject: [PATCH] Scope true and false --- grammars/tree-sitter-go.cson | 2 ++ 1 file changed, 2 insertions(+) diff --git a/grammars/tree-sitter-go.cson b/grammars/tree-sitter-go.cson index 05479fa..d58e2a1 100644 --- a/grammars/tree-sitter-go.cson +++ b/grammars/tree-sitter-go.cson @@ -70,6 +70,8 @@ scopes: 'float_literal': 'constant.numeric.float' 'imaginary_literal': 'constant.numeric.integer' 'nil': 'constant.language.nil' + 'false': 'constant.language.false' + 'true': 'constant.language.true' 'call_expression > identifier': 'entity.name.function' 'function_declaration > identifier': 'entity.name.function'