File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 1+ # Version 0.11.1
2+
3+ Fix-up release. Reenable automatic nREPL starting.
4+
15# Version 0.11.0
26
37Adds ability to evaluate blocks of code without selection [ 61] ( https://github.com/avli/clojureVSCode/issues/61 ) :
Original file line number Diff line number Diff line change 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" ,
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments