File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1499,10 +1499,10 @@ index 0000000000000000000000000000000000000000..56331ff1fc32bbd82e769aaecb551e42
1499
1499
+ require('../../bootstrap-amd').load('vs/server/entry');
1500
1500
diff --git a/src/vs/server/ipc.d.ts b/src/vs/server/ipc.d.ts
1501
1501
new file mode 100644
1502
- index 0000000000000000000000000000000000000000..bf45e75aaf0dc8953ee6fee97fe02149879d3d72
1502
+ index 0000000000000000000000000000000000000000..bc605f03881109ce560c751b550ecaba4671cc74
1503
1503
--- /dev/null
1504
1504
+++ b/src/vs/server/ipc.d.ts
1505
- @@ -0,0 +1,139 @@
1505
+ @@ -0,0 +1,140 @@
1506
1506
+ /**
1507
1507
+ * External interfaces for integration into code-server over IPC. No vs imports
1508
1508
+ * should be made in this file.
@@ -1570,6 +1570,7 @@ index 0000000000000000000000000000000000000000..bf45e75aaf0dc8953ee6fee97fe02149
1570
1570
+ 'builtin-extensions-dir'?: string;
1571
1571
+ 'extra-extensions-dir'?: string[];
1572
1572
+ 'extra-builtin-extensions-dir'?: string[];
1573
+ + 'ignore-last-opened'?: boolean;
1573
1574
+
1574
1575
+ locale?: string
1575
1576
+
Original file line number Diff line number Diff line change @@ -52,7 +52,6 @@ export interface Args extends VsArgs {
52
52
"proxy-domain" ?: string [ ]
53
53
locale ?: string
54
54
_ : string [ ]
55
- "ignore-last-opened" ?: boolean
56
55
"reuse-window" ?: boolean
57
56
"new-window" ?: boolean
58
57
@@ -176,7 +175,7 @@ const options: Options<Required<Args>> = {
176
175
"ignore-last-opened" : {
177
176
type : "boolean" ,
178
177
short : "e" ,
179
- description : "Ignore the last opened directory or workspace in favor of an empty window."
178
+ description : "Ignore the last opened directory or workspace in favor of an empty window." ,
180
179
} ,
181
180
"new-window" : {
182
181
type : "boolean" ,
You can’t perform that action at this time.
0 commit comments