mirror of https://github.com/helix-editor/helix
book: fix the injection-regex example
The regex uses anchors, while all of the language configs packaged with helix don't use them.pull/4123/head^2
parent
1f6809c9ce
commit
b6331394a3
|
@ -35,7 +35,7 @@ Each language is configured by adding a `[[language]]` section to a
|
||||||
[[language]]
|
[[language]]
|
||||||
name = "mylang"
|
name = "mylang"
|
||||||
scope = "source.mylang"
|
scope = "source.mylang"
|
||||||
injection-regex = "^mylang$"
|
injection-regex = "mylang"
|
||||||
file-types = ["mylang", "myl"]
|
file-types = ["mylang", "myl"]
|
||||||
comment-token = "#"
|
comment-token = "#"
|
||||||
indent = { tab-width = 2, unit = " " }
|
indent = { tab-width = 2, unit = " " }
|
||||||
|
|
Loading…
Reference in New Issue