diff options
author | Michael Davis | 2022-06-28 21:19:48 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2022-07-01 09:04:23 +0000 |
commit | 199a2460cabaf2e876d58f3549c4fbfe5ddf16e0 (patch) | |
tree | edd2a2633831b83fb84b84595f901d244a1476b6 | |
parent | 4a0dab8bc28ba674822a69cff72440773890a7e4 (diff) |
make: add injection-regex
-rw-r--r-- | languages.toml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/languages.toml b/languages.toml index 7a4b28c4..f1b6c980 100644 --- a/languages.toml +++ b/languages.toml @@ -727,7 +727,8 @@ source = { git = "https://github.com/uyha/tree-sitter-cmake", rev = "f6616f1e417 name = "make" scope = "source.make" file-types = ["Makefile", "makefile", "mk", "justfile", ".justfile"] -roots =[] +injection-regex = "(make|makefile|Makefile|mk|just)" +roots = [] comment-token = "#" indent = { tab-width = 4, unit = "\t" } |