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:
parent
1f6809c9ce
commit
b6331394a3
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ Each language is configured by adding a `[[language]]` section to a
|
|||
[[language]]
|
||||
name = "mylang"
|
||||
scope = "source.mylang"
|
||||
injection-regex = "^mylang$"
|
||||
injection-regex = "mylang"
|
||||
file-types = ["mylang", "myl"]
|
||||
comment-token = "#"
|
||||
indent = { tab-width = 2, unit = " " }
|
||||
|
|
Loading…
Add table
Reference in a new issue