Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/compiler/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ async function compileActiveEditorsBinary(
): Promise<BinaryInfo> {
const activeFile =
debugContext === "workspace"
? vscode.workspace?.workspaceFolders?.[0].uri.fsPath + "/"
? vscode.workspace?.workspaceFolders?.[0].uri.fsPath + path.sep
: vscode.window.activeTextEditor?.document.uri.fsPath;

const activeFileLanguage = getActiveFileLanguage();
Expand Down
3 changes: 0 additions & 3 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,6 @@ export function activate(context: vscode.ExtensionContext) {
const activeEditor = vscode.window.activeTextEditor;
if (activeEditor) {
const activeEditor = vscode.window.activeTextEditor;
vscode.window.showInformationMessage(
`activeEditor: ${activeEditor?.document.uri.fsPath}`
);
vscode.window.showInformationMessage("FastEdge: Running File");
vscode.debug.startDebugging(undefined, {
...getLaunchConfigurations(activeEditor?.document.uri),
Expand Down