forked from kiddkai/atom-node-debugger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnode-debugger.cson
More file actions
46 lines (46 loc) · 1.02 KB
/
node-debugger.cson
File metadata and controls
46 lines (46 loc) · 1.02 KB
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
'menu': [
{
'label': 'Packages'
'submenu': [
'label': 'Node Debugger'
'submenu': [
{
'label': 'Start/Resume'
'command': 'node-debugger:start-resume'
},
{
'label': 'Debug Active File'
'command': 'node-debugger:start-active-file'
},
{
'label': 'Attach'
'command': 'node-debugger:attach'
},
{
'label': 'Stop'
'command': 'node-debugger:stop'
},
{
'label': 'Step In'
'command': 'node-debugger:step-in'
},
{
'label': 'Step Out'
'command': 'node-debugger:step-out'
},
{
'label': 'Step Next'
'command': 'node-debugger:step-next'
},
{
'label': 'Toggle Breakpoint'
'command': 'node-debugger:toggle-breakpoint'
},
{
'label': 'Toggle Debugger'
'command': 'node-debugger:toggle-debugger'
}
]
]
}
]