forked from sriv/SublimeREPL_posh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Main.sublime-menu
70 lines (69 loc) · 2.73 KB
/
Main.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
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
[
{
"id": "tools",
"children":
[{
"caption": "SublimeREPL",
"mnemonic": "r",
"id": "SublimeREPL",
"children":
[
{"caption": "Eval in REPL",
"children":
[
{"caption": "Selection", "command": "repl_transfer_current", "args": {"scope": "selection"}},
{"caption": "File", "command": "repl_transfer_current", "args": {"scope": "file"}},
{"caption": "Lines", "command": "repl_transfer_current", "args": {"scope": "lines"}},
{"caption": "Block", "command": "repl_transfer_current", "args": {"scope": "block"}}
]},
{"caption": "Transfer to REPL",
"children":
[
{"caption": "Selection", "command": "repl_transfer_current", "args": {"scope": "selection", "action":"view_write"}},
{"caption": "File", "command": "repl_transfer_current", "args": {"scope": "file", "action":"view_write"}},
{"caption": "Lines", "command": "repl_transfer_current", "args": {"scope": "lines", "action":"view_write"}},
{"caption": "Block", "command": "repl_transfer_current", "args": {"scope": "block", "action":"view_write"}}
]
},
{ "caption": "-" }
]
}]
},
{
"caption": "Preferences",
"mnemonic": "n",
"id": "preferences",
"children":
[
{
"caption": "Package Settings",
"mnemonic": "P",
"id": "package-settings",
"children":
[
{
"caption": "SublimeREPL",
"children":
[
{
"command": "open_file", "args":
{
"file": "${packages}/SublimeREPL/SublimeREPL.sublime-settings"
},
"caption": "Settings – Default"
},
{
"command": "open_file", "args":
{
"file": "${packages}/User/SublimeREPL.sublime-settings"
},
"caption": "Settings – User"
},
{ "caption": "-" }
]
}
]
}
]
}
]