File tree Expand file tree Collapse file tree 3 files changed +7
-8
lines changed Expand file tree Collapse file tree 3 files changed +7
-8
lines changed Original file line number Diff line number Diff line change 59
59
"commandPalette" : [
60
60
{
61
61
"category" : " Debugpy" ,
62
- "command" : " python .clearCacheAndReload" ,
62
+ "command" : " debugpy .clearCacheAndReload" ,
63
63
"title" : " %debugpy.command.clearCacheAndReload.title%"
64
64
},
65
65
{
66
66
"category" : " Debugpy" ,
67
- "command" : " python .debugInTerminal" ,
67
+ "command" : " debugpy .debugInTerminal" ,
68
68
"icon" : " $(debug-alt)" ,
69
69
"title" : " %debugpy.command.debugInTerminal.title%"
70
70
},
71
71
{
72
72
"category" : " Debugpy" ,
73
- "command" : " python .viewOutput" ,
73
+ "command" : " debugpy .viewOutput" ,
74
74
"title" : " %debugpy.command.viewOutput.title%"
75
75
}
76
76
]
414
414
],
415
415
"type" : " debugpy" ,
416
416
"variables" : {
417
- "pickProcess" : " debupy .pickLocalProcess"
417
+ "pickProcess" : " debugpy .pickLocalProcess"
418
418
},
419
419
"when" : " !virtualWorkspace && shellExecutionSupported"
420
420
}
Original file line number Diff line number Diff line change 5
5
'use strict' ;
6
6
7
7
import { ExtensionContext , Memento } from 'vscode' ;
8
- import { EnvironmentVariables } from './variables/types' ;
9
8
10
9
export interface IDisposable {
11
10
// eslint-disable-next-line @typescript-eslint/no-explicit-any
Original file line number Diff line number Diff line change 4
4
5
5
// This line should always be right on top.
6
6
7
- // if ((Reflect as any).metadata === undefined) {
8
- // require('reflect-metadata');
9
- // }
7
+ if ( ( Reflect as any ) . metadata === undefined ) {
8
+ require ( 'reflect-metadata' ) ;
9
+ }
10
10
11
11
import { registerDebugger } from './extensionInit' ;
12
12
import { IExtensionContext } from './common/types' ;
You can’t perform that action at this time.
0 commit comments