Skip to content

Commit

Permalink
Reenable automatic nREPL starting
Browse files Browse the repository at this point in the history
  • Loading branch information
avli committed Nov 10, 2019
1 parent da13726 commit 078056a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Version 0.11.1

Fix-up release. Reenable automatic nREPL starting.

# Version 0.11.0

Adds ability to evaluate blocks of code without selection [61](https://github.com/avli/clojureVSCode/issues/61):
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "clojure",
"displayName": "Clojure",
"description": "Clojure nREPL support for Visual Studio Code",
"version": "0.11.0",
"version": "0.11.1",
"publisher": "avli",
"author": {
"name": "Andrey Lisin",
Expand Down
6 changes: 3 additions & 3 deletions src/clojureMain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ export function activate(context: vscode.ExtensionContext) {
context.subscriptions.push(nreplController);
cljConnection.disconnect(false);
var config = vscode.workspace.getConfiguration('clojureVSCode');
// if (config.autoStartNRepl) {
// cljConnection.startNRepl();
// }
if (config.autoStartNRepl) {
cljConnection.startNRepl();
}

maybeActivateFormatOnSave();

Expand Down

0 comments on commit 078056a

Please sign in to comment.