-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathSublimeIPythonNotebook.tmLanguage.JSON
94 lines (82 loc) · 2.26 KB
/
SublimeIPythonNotebook.tmLanguage.JSON
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"fileTypes": ["ipynb"],
"name": "IPython Notebook",
"scopeName": "source.ipynb",
"uuid": "a09ea990-df95-11e2-a28f-0800200c9a66",
"foldingStartMarker" : "\\#Output\\[.*\\]",
"foldingStopMarker" : "\\#\\/Output",
"patterns": [
// {
// "match": "Input\\[.*\\]",
// "name": "keyword.source.python",
// "comment": "Beginning of cell input"
// },
{
"contentName": "ipynb.source.input.r source.r",
"begin": "\\#Input-R\\[.*\\]\n",
"end": "\\#\\/Input",
"beginCaptures": {
"0": { "name": "comment"}
},
"endCaptures": {
"0": { "name": "comment"}
},
"patterns": [
{
"include": "source.r"
},
]
},
{
"contentName": "ipynb.text.tex.latex text.tex.latex",
"begin": "\\#Markdown\n",
"end": "\\#\\/Markdown",
"beginCaptures": {
"0": { "name": "comment"}
},
"endCaptures": {
"0": { "name": "comment"}
},
"patterns": [
{
"include": "text.tex.latex"
},
]
},
{
"contentName": "ipynb.source.input.python source.python",
"begin": "\\#Input\\[(.*)\\]\\n",
"end": "(\\#\\/Input\\[\\1\\])$",
"patterns": [
{
"include": "#ipynb_input_python"
}
],
"beginCaptures": {
"0": { "name": "comment"}
},
"endCaptures": {
"0": { "name": "comment"}
},
},
{
"contentName": "ipynb.source.output",
//"name": "storage.type.string.python",
"begin": "\\#Output\\[.*\\]\n",
"end": "\\#\\/Output",
"beginCaptures": {
"0": { "name": "ipynb.source.invisible"}
},
"endCaptures": {
"0": { "name": "ipynb.source.invisible"}
},
},
],
"repository" : {
"ipynb_input_python" : {
"patterns" : [
{"include" : "source.python_no_brackets"}
]
}
}
}