book: fix the injection-regex example

The regex uses anchors, while all of the language
configs packaged with helix don't use them.
This commit is contained in:
Clément Delafargue 2023-01-13 16:15:39 +01:00 committed by Michael Davis
parent 1f6809c9ce
commit b6331394a3

View File

@ -35,7 +35,7 @@ ## Language configuration
[[language]]
name = "mylang"
scope = "source.mylang"
injection-regex = "^mylang$"
injection-regex = "mylang"
file-types = ["mylang", "myl"]
comment-token = "#"
indent = { tab-width = 2, unit = " " }