mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 02:47:45 +03:00
feat: Add SourcePawn language support (#13028)
This commit is contained in:
parent
2d3b75a8c5
commit
dc4761ad3a
5 changed files with 302 additions and 0 deletions
|
@ -137,6 +137,7 @@ helm_ls = { command = "helm_ls", args = ["serve"] }
|
|||
ember-language-server = { command = "ember-language-server", args = ["--stdio"] }
|
||||
teal-language-server = { command = "teal-language-server" }
|
||||
wasm-language-tools = { command = "wat_server" }
|
||||
sourcepawn-studio = { command = "sourcepawn-studio" }
|
||||
|
||||
[language-server.ansible-language-server]
|
||||
command = "ansible-language-server"
|
||||
|
@ -4213,3 +4214,15 @@ soft-wrap = { enable = true }
|
|||
[[grammar]]
|
||||
name = "ink"
|
||||
source = { git = "https://github.com/rhizoome/tree-sitter-ink", rev = "8486e9b1627b0bc6b2deb9ee8102277a7c1281ac" }
|
||||
|
||||
[[language]]
|
||||
name = "sourcepawn"
|
||||
scope = "source.sourcepawn"
|
||||
file-types = ["sp", "inc"]
|
||||
comment-token = "//"
|
||||
indent = {tab-width = 4, unit = " "}
|
||||
language-servers = ["sourcepawn-studio"]
|
||||
|
||||
[[grammar]]
|
||||
name = "sourcepawn"
|
||||
source = { git = "https://github.com/nilshelmig/tree-sitter-sourcepawn", rev = "f2af8d0dc14c6790130cceb2a20027eb41a8297c" }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue