Skip to content

Commit

Permalink
Merge pull request #271 from ramorais/Feature/ShowOutputInCompile
Browse files Browse the repository at this point in the history
Exibir o output do Advpl no comando de compilação.
  • Loading branch information
lwtnb-wrk authored Feb 13, 2020
2 parents beea661 + 2256fdd commit b1d7086
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/compile/tdsBuild.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ async function buildCode(filesPaths: string[], compileOptions: CompileOptions, c
const shouldClearConsole = configADVPL.get("clearConsoleBeforeCompile");
if (shouldClearConsole !== false) {
languageClient.outputChannel.clear();
languageClient.outputChannel.show();
}

const resourcesToConfirm: vscode.TextDocument[] = vscode.workspace.textDocuments.filter(d => !d.isUntitled && d.isDirty);
Expand Down

0 comments on commit b1d7086

Please sign in to comment.