mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-22 01:16:18 +04:00
feat: add pem language (#5797)
This commit is contained in:
parent
fce30c0da0
commit
05c5207265
@ -93,6 +93,7 @@
|
||||
| openscad | ✓ | | | `openscad-lsp` |
|
||||
| org | ✓ | | | |
|
||||
| pascal | ✓ | ✓ | | `pasls` |
|
||||
| pem | ✓ | | | |
|
||||
| perl | ✓ | ✓ | ✓ | |
|
||||
| php | ✓ | ✓ | ✓ | `intelephense` |
|
||||
| ponylang | ✓ | ✓ | ✓ | |
|
||||
|
@ -2134,3 +2134,15 @@ grammar = "xml"
|
||||
'"' = '"'
|
||||
"'" = "'"
|
||||
"<" = ">"
|
||||
|
||||
[[language]]
|
||||
name = "pem"
|
||||
scope = "source.pem"
|
||||
file-types = ["pem", "cert", "crt"]
|
||||
injection-regex = "pem"
|
||||
roots = []
|
||||
grammar = "pem"
|
||||
|
||||
[[grammar]]
|
||||
name = "pem"
|
||||
source = { git = "https://github.com/mtoohey31/tree-sitter-pem", rev = "be67a4330a1aa507c7297bc322204f936ec1132c" }
|
||||
|
7
runtime/queries/pem/highlights.scm
Normal file
7
runtime/queries/pem/highlights.scm
Normal file
@ -0,0 +1,7 @@
|
||||
(label) @constant
|
||||
|
||||
(preeb) @keyword
|
||||
(posteb) @keyword
|
||||
|
||||
(base64pad) @string.special.symbol
|
||||
(laxbase64text) @string
|
Loading…
Reference in New Issue
Block a user