Skip to content

Commit 078056a

Browse files
committed
Reenable automatic nREPL starting
1 parent da13726 commit 078056a

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Version 0.11.1
2+
3+
Fix-up release. Reenable automatic nREPL starting.
4+
15
# Version 0.11.0
26

37
Adds ability to evaluate blocks of code without selection [61](https://github.com/avli/clojureVSCode/issues/61):

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "clojure",
33
"displayName": "Clojure",
44
"description": "Clojure nREPL support for Visual Studio Code",
5-
"version": "0.11.0",
5+
"version": "0.11.1",
66
"publisher": "avli",
77
"author": {
88
"name": "Andrey Lisin",

src/clojureMain.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ export function activate(context: vscode.ExtensionContext) {
1919
context.subscriptions.push(nreplController);
2020
cljConnection.disconnect(false);
2121
var config = vscode.workspace.getConfiguration('clojureVSCode');
22-
// if (config.autoStartNRepl) {
23-
// cljConnection.startNRepl();
24-
// }
22+
if (config.autoStartNRepl) {
23+
cljConnection.startNRepl();
24+
}
2525

2626
maybeActivateFormatOnSave();
2727

0 commit comments

Comments
 (0)