Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mauricioszabo/clojure-tooling-libraries
A public listing of libraries and plug-ins that provides autocomplete, refactor, etc.
https://github.com/mauricioszabo/clojure-tooling-libraries
Last synced: about 4 hours ago
JSON representation
A public listing of libraries and plug-ins that provides autocomplete, refactor, etc.
- Host: GitHub
- URL: https://github.com/mauricioszabo/clojure-tooling-libraries
- Owner: mauricioszabo
- Created: 2019-04-22T14:05:23.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-04-22T14:46:27.000Z (over 5 years ago)
- Last Synced: 2024-11-09T05:31:51.886Z (about 2 months ago)
- Size: 1.95 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Clojure Tooling Libraries
## Tooling
* CIDER
* Clojure-LSP (https://github.com/snoe/clojure-lsp)
LSP server using statical analysis
* Orchard
http://metaredux.com/posts/2018/11/09/ciders-orchard-the-heart.html
* REPL-Tooling (https://github.com/mauricioszabo/repl-tooling)
A ClojureScript library that allows editors to connect to socket REPLs, "upgrade" then with UNREPL to work with Clojure or connect to Lumo/Shadow-CLJS.
The idea of the project is that other plug-ins (Clematis and Chlorine) to be just "clients" of this library. They would connect to a host/port, and this library will detect the capabilities of the REPL (is it a Clojure? ClojureScript? ClojureCLR? Lumo?) and return allowed commands. Also, when connecting, the client would register some callbacks that would allow most of evaluate, goto definition, and autocomplete code to run without any editor-specific command. Examples of these callbacks can be `editor-data` (gets current editor's contents, the cursor range, and file name), `open-file-at-position` (open a file at specific row/col, possibily a "virtual" file, readonly, with only some contents), `on-start-eval`, `on-eval`, `on-stdout`, and so on).
## Plug-ins
### Atom
* Chlorine (https://github.com/mauricioszabo/atom-chlorine)Socket REPL client for Clojure, Shadow-CLJS and Lumo. Supports an integrated REPL, inline eval, autocomplete, goto definition, and refresh namespaces. Written in ClojureScript.
* Proto-REPL (https://github.com/jasongilman/proto-repl)
nREPL client for Clojure, supports an integrated REPL, inline eval, test runner, autocomplete, goto definition, and refresh namespaces. Written in CoffeeScript, with some ClojureScript parts.
### VIM
* Clematis (https://github.com/mauricioszabo/clematis)Almost nothing works, just a client to REPL-Tooling to "test the waters". Written in ClojureScript.
* Fireplace (https://github.com/tpope/vim-fireplace)
### VS Code
* Calva (https://github.com/BetterThanTomorrow/calva)nREPL client for Clojure. Supports an integrated REPL, linting, inline eval, test runner.