File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Load Diff This file was deleted.
Original file line number Diff line number Diff line change 55
66'use strict' ;
77
8+ import { Disposable } from 'vscode' ;
9+ import { AddComment } from './addComment' ;
10+ import { AddLineNumbers } from './addLineNumbers' ;
11+ import { RemoveComment } from './removeComment' ;
12+ import { RemoveLineNumbers } from './removeLineNumbers' ;
13+ import { ShowGCodeSettings } from './showGCodeSettings' ;
14+ import { ShowSupportGCode } from './showSupportGCode' ;
15+
816export { AddComment } from './addComment' ;
917export { AddLineNumbers } from './addLineNumbers' ;
1018export { RemoveComment } from './removeComment' ;
1119export { RemoveLineNumbers } from './removeLineNumbers' ;
1220export { ShowGCodeSettings } from './showGCodeSettings' ;
1321export { ShowSupportGCode } from './showSupportGCode' ;
22+
23+ export function registerCommands ( ) : Disposable [ ] {
24+ return [
25+ new AddComment ( ) ,
26+ new AddLineNumbers ( ) ,
27+ new RemoveComment ( ) ,
28+ new RemoveLineNumbers ( ) ,
29+ new ShowGCodeSettings ( ) ,
30+ new ShowSupportGCode ( ) ,
31+ ] ;
32+ }
You can’t perform that action at this time.
0 commit comments