Editor for ClojureCLR

Is there an editor for ClojureCLR with REPL support and parenthesis matching? I found a project that adds ClojureCLR support in Visual Studio: vsClojure but was unable to create it. Are there any other options?

+3
source share
1 answer

From readme.txt file:

Building:

1.) Install the Visual Studio 2010 SDK.
2.) Clone the vsClojure repository.
3.) Download the Managed Package Framework (http://mpfproj.codeplex.com/).
4.) Create a folder named "ManagedPackageFramework" in the solution directory.
5.) Copy the ManagedPackageFramework source to the new folder. 
6.) Open the vsClojure solution.
7.) Build

Duration:

1.) Download or build ClojureCLR (http://github.com/richhickey/clojure-clr).
2.) Build vsClojure.
3.) Run vsClojure from Visual Studio.
4.) Add a new Clojure project.
5.) Set the path to ClojureCLR in the project properties.

Oh, and readme also says:

In development - Not ready for use.
+4
source

Source: https://habr.com/ru/post/1778020/


All Articles