-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathContext.sublime-menu
executable file
·45 lines (45 loc) · 1.28 KB
/
Context.sublime-menu
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
[
{ "caption": "-" },
{
"caption": "Evaluate JavaScript",
"children": [
{
"caption": "Evaluate JavaScript (eval)",
"id": "evaluate_javascript_eval",
"command": "evaluate_javascript",
"args": {"eval_type": "eval"}
},
{
"caption": "Evaluate JavaScript (print)",
"id": "evaluate_javascript_print",
"command": "evaluate_javascript",
"args": {"eval_type": "print"}
},
{ "caption": "-" },
{
"caption": "Evaluate JavaScript on this line (eval)",
"id": "evaluate_javascript_line_eval",
"command": "evaluate_javascript",
"args": {"is_line": "True", "eval_type": "eval"}
},
{
"caption": "Evaluate JavaScript on this line (print)",
"id": "evaluate_javascript_line_print",
"command": "evaluate_javascript",
"args": {"is_line": "True", "eval_type": "print"}
},
{ "caption": "-" },
{
"caption": "Hide start and end white dot",
"id": "hide_start_end_dot_eval",
"command": "hide_start_end_dot_eval"
},
{
"caption": "Show start and end white dot",
"id": "show_start_end_dot_eval",
"command": "show_start_end_dot_eval"
}
]
},
{ "caption": "-" }
]