-
Notifications
You must be signed in to change notification settings - Fork 8
/
rascal_style.xml
29 lines (29 loc) · 1.12 KB
/
rascal_style.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?xml version="1.0" encoding="ISO-8859-1"?>
<additionalHeaders>
<rascal_style>
<firstLine>@license{</firstLine>
<endLine>}</endLine>
<firstLineDetectionPattern>@license\{.*$</firstLineDetectionPattern>
<lastLineDetectionPattern>\}$</lastLineDetectionPattern>
<allowBlankLines>true</allowBlankLines>
<isMultiLine>true</isMultiLine>
</rascal_style>
<sdf_style>
<firstLine>%%</firstLine>
<endLine>%%</endLine>
<firstLineDetectionPattern>^%%</firstLineDetectionPattern>
<lastLineDetectionPattern>^%%</lastLineDetectionPattern>
<beforeEachLine>%% </beforeEachLine>
<allowBlankLines>true</allowBlankLines>
<isMultiLine>true</isMultiLine>
</sdf_style>
<phppp_style>
<firstLine>#</firstLine>
<endLine>#</endLine>
<firstLineDetectionPattern>^#</firstLineDetectionPattern>
<lastLineDetectionPattern>^#</lastLineDetectionPattern>
<beforeEachLine># </beforeEachLine>
<allowBlankLines>true</allowBlankLines>
<isMultiLine>true</isMultiLine>
</phppp_style>
</additionalHeaders>