You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/compiler/compiler-base.ts
+15-6Lines changed: 15 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,7 @@ import { isWhitespace } from "@sourcelib/kv/";
3
3
import*asmainfrom"../main";
4
4
import*asfsfrom"fs";
5
5
import{execFile}from"child_process";
6
+
importpathfrom"path";
6
7
7
8
exportinterfaceCompileSettings{
8
9
editor: vscode.TextEditor;
@@ -25,9 +26,13 @@ export async function compileSomething(settings: CompileSettings): Promise<void>
25
26
vscode.window.showErrorMessage("The current document is not a file. Cannot compile. Honestly, I have no idea how this is possible, so if you can into this, please message me.");
0 commit comments