-
Notifications
You must be signed in to change notification settings - Fork 3
/
Languages.xml
48 lines (43 loc) · 1.51 KB
/
Languages.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?xml version="1.0" encoding="UTF-8"?>
<settings>
<language id="net.fileability.sugars.python">
<syntax-zone>sourcecode.python</syntax-zone>
<root-zone>sourcecode.python</root-zone>
<name>Python</name>
<detectors>
<extension casesensitive="false">py</extension>
<match-content lines="1">^#![\w\/ ]*?python$</match-content>
</detectors>
</language>
<language id="net.fileability.sugars.django">
<syntax-zone>sourcecode.django</syntax-zone>
<root-zone>sourcecode.django</root-zone>
<name>Django</name>
<detectors>
<combo>
<extension casesensitive="false">py</extension>
<match-content lines="10">^(from|import)\s*django</match-content>
</combo>
</detectors>
</language>
<language id="net.fileability.sugars.django-template">
<syntax-zone>sourcecode.django-template</syntax-zone>
<root-zone>sourcecode.django-template</root-zone>
<name>Django Template</name>
<detectors>
<match-content lines="10">(\{\{|\{\%|\{\#)</match-content>
</detectors>
</language>
<meta>
<name>Python</name>
<description>A sugar for doing development in the Python programming language.</description>
<author>##Espresso</author>
<identifier>net.fileability.sugars.python</identifier>
<version status="preview">1</version>
<download format="git">git://github.com/fileability/EspressoPython.sugar.git</download>
<url>http://github.com/fileability/EspressoPython.sugar</url>
<dependencies>
<dependency id="name.elliottcable.Sugar.Regex">Regex</dependency>
</dependencies>
</meta>
</settings>