We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33c2d45 commit 6708c8aCopy full SHA for 6708c8a
1 file changed
packages/vscode/src/fill/stdioElectron.ts
@@ -1,7 +1,12 @@
1
import { StdioIpcHandler } from "@coder/server/src/ipc";
2
import { IpcRenderer } from "electron";
3
4
-export * from "@coder/ide/src/fill/electron";
+// TODO: Commenting out for now since the electron fill includes the client code
5
+// and tries to connect to the web socket. The fill also likely wouldn't work
6
+// since it assumes it is running on the client. Could we proxy all methods to
7
+// the client? It might not matter since we intercept everything before sending
8
+// to the shared process.
9
+// export * from "@coder/ide/src/fill/electron";
10
11
class StdioIpcRenderer extends StdioIpcHandler implements IpcRenderer {
12
// tslint:disable-next-line no-any
0 commit comments