aboutsummaryrefslogtreecommitdiff
path: root/editors/code
diff options
context:
space:
mode:
authorDusty Pomerleau <[email protected]>2020-11-21 07:44:38 +0000
committerDusty Pomerleau <[email protected]>2020-11-21 07:44:38 +0000
commit4410af455ecfe99c297015ad650c458a765e784f (patch)
tree4dbfa03dd6400a407c839696afd82e685bae8122 /editors/code
parent48bb4bf22895edd3658658f088499b0dd60df371 (diff)
ensure word boundary after `true`
Diffstat (limited to 'editors/code')
-rw-r--r--editors/code/rust.tmGrammar.json2
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/rust.tmGrammar.json b/editors/code/rust.tmGrammar.json
index cd4775d27..4759bb116 100644
--- a/editors/code/rust.tmGrammar.json
+++ b/editors/code/rust.tmGrammar.json
@@ -409,7 +409,7 @@
409 { 409 {
410 "comment": "booleans", 410 "comment": "booleans",
411 "name": "constant.language.bool.rust", 411 "name": "constant.language.bool.rust",
412 "match": "\\btrue|false\\b" 412 "match": "\\b(true|false)\\b"
413 } 413 }
414 ] 414 ]
415 }, 415 },