Skip to content

Commit c59984e

Browse files
Perl support
1 parent 4c6e617 commit c59984e

File tree

7 files changed

+3018
-0
lines changed

7 files changed

+3018
-0
lines changed

feature-editor/impl/src/main/assets/languages.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,12 @@
153153
"meta.embedded.block.python": "python"
154154
}
155155
},
156+
{
157+
"name": "perl",
158+
"scopeName": "source.perl",
159+
"grammar": "languages/perl/syntaxes/perl.tmLanguage.json",
160+
"languageConfiguration": "languages/perl/language-configuration.json"
161+
},
156162
{
157163
"name": "php",
158164
"scopeName": "source.php",
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"comments": {
3+
"lineComment": "#"
4+
},
5+
"brackets": [
6+
["{", "}"],
7+
["[", "]"],
8+
["(", ")"]
9+
],
10+
"autoClosingPairs": [
11+
["{", "}"],
12+
["[", "]"],
13+
["(", ")"],
14+
{ "open": "\"", "close": "\"", "notIn": ["string"] },
15+
{ "open": "'", "close": "'", "notIn": ["string"] },
16+
{ "open": "`", "close": "`", "notIn": ["string"] }
17+
],
18+
"surroundingPairs": [
19+
["{", "}"],
20+
["[", "]"],
21+
["(", ")"],
22+
["\"", "\""],
23+
["'", "'"],
24+
["`", "`"]
25+
]
26+
}

0 commit comments

Comments
 (0)