mirror of https://git.tuxpa.in/a/code-server.git
Move ignore-last-opened to ipc.d.ts
This is so it can be used in VS Code. Don't tell anyone but I forgot to run `yarn ci`.
This commit is contained in:
parent
cc584f86b9
commit
f8b782bd68
|
@ -1499,10 +1499,10 @@ index 0000000000000000000000000000000000000000..56331ff1fc32bbd82e769aaecb551e42
|
||||||
+require('../../bootstrap-amd').load('vs/server/entry');
|
+require('../../bootstrap-amd').load('vs/server/entry');
|
||||||
diff --git a/src/vs/server/ipc.d.ts b/src/vs/server/ipc.d.ts
|
diff --git a/src/vs/server/ipc.d.ts b/src/vs/server/ipc.d.ts
|
||||||
new file mode 100644
|
new file mode 100644
|
||||||
index 0000000000000000000000000000000000000000..bf45e75aaf0dc8953ee6fee97fe02149879d3d72
|
index 0000000000000000000000000000000000000000..bc605f03881109ce560c751b550ecaba4671cc74
|
||||||
--- /dev/null
|
--- /dev/null
|
||||||
+++ b/src/vs/server/ipc.d.ts
|
+++ b/src/vs/server/ipc.d.ts
|
||||||
@@ -0,0 +1,139 @@
|
@@ -0,0 +1,140 @@
|
||||||
+/**
|
+/**
|
||||||
+ * External interfaces for integration into code-server over IPC. No vs imports
|
+ * External interfaces for integration into code-server over IPC. No vs imports
|
||||||
+ * should be made in this file.
|
+ * should be made in this file.
|
||||||
|
@ -1570,6 +1570,7 @@ index 0000000000000000000000000000000000000000..bf45e75aaf0dc8953ee6fee97fe02149
|
||||||
+ 'builtin-extensions-dir'?: string;
|
+ 'builtin-extensions-dir'?: string;
|
||||||
+ 'extra-extensions-dir'?: string[];
|
+ 'extra-extensions-dir'?: string[];
|
||||||
+ 'extra-builtin-extensions-dir'?: string[];
|
+ 'extra-builtin-extensions-dir'?: string[];
|
||||||
|
+ 'ignore-last-opened'?: boolean;
|
||||||
+
|
+
|
||||||
+ locale?: string
|
+ locale?: string
|
||||||
+
|
+
|
||||||
|
|
|
@ -52,7 +52,6 @@ export interface Args extends VsArgs {
|
||||||
"proxy-domain"?: string[]
|
"proxy-domain"?: string[]
|
||||||
locale?: string
|
locale?: string
|
||||||
_: string[]
|
_: string[]
|
||||||
"ignore-last-opened"?: boolean
|
|
||||||
"reuse-window"?: boolean
|
"reuse-window"?: boolean
|
||||||
"new-window"?: boolean
|
"new-window"?: boolean
|
||||||
|
|
||||||
|
@ -176,7 +175,7 @@ const options: Options<Required<Args>> = {
|
||||||
"ignore-last-opened": {
|
"ignore-last-opened": {
|
||||||
type: "boolean",
|
type: "boolean",
|
||||||
short: "e",
|
short: "e",
|
||||||
description: "Ignore the last opened directory or workspace in favor of an empty window."
|
description: "Ignore the last opened directory or workspace in favor of an empty window.",
|
||||||
},
|
},
|
||||||
"new-window": {
|
"new-window": {
|
||||||
type: "boolean",
|
type: "boolean",
|
||||||
|
|
Loading…
Reference in New Issue