feat: Add support for the Ink programming language (#12773)

This commit is contained in:
Jean-Louis Fuchs 2025-02-12 16:46:50 +01:00 committed by GitHub
parent 5a66270c00
commit 258e3e1136
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 68 additions and 0 deletions

View file

@ -4174,3 +4174,17 @@ language-servers = [ "yls" ]
[[grammar]]
name = "yara"
source = { git = "https://github.com/egibs/tree-sitter-yara", rev = "eb3ede203275c38000177f72ec0f9965312806ef" }
[[language]]
name = "ink"
scope = "source.ink"
file-types = ["ink"]
injection-regex = "ink"
comment-token = "//"
block-comment-tokens = { start = "/*", end = "*/"}
indent = { tab-width = 4, unit = "\t" }
soft-wrap = { enable = true }
[[grammar]]
name = "ink"
source = { git = "https://github.com/rhizoome/tree-sitter-ink", rev = "8486e9b1627b0bc6b2deb9ee8102277a7c1281ac" }