Skip to content

Commit

Permalink
fixed phppp header detection patterns
Browse files Browse the repository at this point in the history
  • Loading branch information
jurgenvinju committed Sep 22, 2023
1 parent 5e65a9d commit dedb0b3
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions rascal_style.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,19 @@
<isMultiLine>true</isMultiLine>
</rascal_style>
<sdf_style>
<firstLine>%% </firstLine>
<endLine>%% </endLine>
<firstLineDetectionPattern>%% $</firstLineDetectionPattern>
<lastLineDetectionPattern>%% $</lastLineDetectionPattern>
<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>
<firstLine>#</firstLine>
<endLine>#</endLine>
<firstLineDetectionPattern>^#</firstLineDetectionPattern>
<lastLineDetectionPattern>^#</lastLineDetectionPattern>
<beforeEachLine># </beforeEachLine>
<allowBlankLines>true</allowBlankLines>
<isMultiLine>true</isMultiLine>
Expand Down

0 comments on commit dedb0b3

Please sign in to comment.