Skip to content

Commit

Permalink
Merge pull request #119 from biesiad/dont_focus_output_on_eval
Browse files Browse the repository at this point in the history
Don't focus output window on eval
  • Loading branch information
avli authored Dec 3, 2018
2 parents bc14a2b + dcc93ca commit d085e08
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/clojureEval.ts
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ function handleError(outputChannel: vscode.OutputChannel, selection: vscode.Sele
outputChannel.appendLine(` ${trace.class}.${trace.method} (${trace.file}:${trace.line})`);
});

outputChannel.show();
outputChannel.show(true);
nreplClient.close(session);
});
}
Expand All @@ -211,7 +211,7 @@ function handleSuccess(outputChannel: vscode.OutputChannel, showResults: boolean
outputChannel.append(respObj.err);
if (respObj.value)
outputChannel.appendLine(`=> ${respObj.value}`);
outputChannel.show();
outputChannel.show(true);
});
}
nreplClient.close(respObjs[0].session);
Expand Down

0 comments on commit d085e08

Please sign in to comment.