All Projects → clojure-lsp → Clojure Lsp

clojure-lsp / Clojure Lsp

Licence: mit
Language Server (LSP) for Clojure

Programming Languages

clojure
4091 projects
clj
17 projects

Projects that are alternatives of or similar to Clojure Lsp

Typescript Language Server
TypeScript & JavaScript Language Server
Stars: ✭ 462 (-15.54%)
Mutual labels:  lsp, language-server
atom-ide-scala
Scala & Dotty support for Atom IDE (🧟‍♂️ zombie repo)
Stars: ✭ 47 (-91.41%)
Mutual labels:  language-server, lsp
groovy-language-server
A language server for Groovy
Stars: ✭ 132 (-75.87%)
Mutual labels:  language-server, lsp
Fsautocomplete
F# language server using Language Server Protocol
Stars: ✭ 208 (-61.97%)
Mutual labels:  lsp, language-server
Erlang ls
The Erlang Language Server
Stars: ✭ 363 (-33.64%)
Mutual labels:  lsp, language-server
Csharp Language Server Protocol
Language Server Protocol in C#
Stars: ✭ 230 (-57.95%)
Mutual labels:  lsp, language-server
Spyglass
Development tools for vanilla Minecraft: Java Edition data pack developers.
Stars: ✭ 163 (-70.2%)
Mutual labels:  language-server, lsp
Elm Language Client Vscode
Improving your Elm experience since 2019
Stars: ✭ 162 (-70.38%)
Mutual labels:  lsp, language-server
Monaco Languageclient
NPM module to connect Monaco editor with language servers
Stars: ✭ 419 (-23.4%)
Mutual labels:  lsp, language-server
ltex-ls
LTeX Language Server: LSP language server for LanguageTool 🔍✔️ with support for LaTeX 🎓, Markdown 📝, and others
Stars: ✭ 182 (-66.73%)
Mutual labels:  language-server, lsp
Elm Language Server
Language server implementation for Elm
Stars: ✭ 298 (-45.52%)
Mutual labels:  lsp, language-server
camel-language-server
The Apache Camel LSP server implementation
Stars: ✭ 31 (-94.33%)
Mutual labels:  language-server, lsp
Nox
Nox is a lightweight, high-performance LSP client for Emacs
Stars: ✭ 181 (-66.91%)
Mutual labels:  lsp, language-server
sublime-reason
Official Reason plugin for Sublime Text
Stars: ✭ 42 (-92.32%)
Mutual labels:  language-server, lsp
Dockerfile Language Server Nodejs
A language server for Dockerfiles powered by Node.js, TypeScript, and VSCode technologies.
Stars: ✭ 170 (-68.92%)
Mutual labels:  lsp, language-server
typescript-language-server
TypeScript & JavaScript Language Server
Stars: ✭ 1,118 (+104.39%)
Mutual labels:  language-server, lsp
Metals
Scala language server with rich IDE features 🚀
Stars: ✭ 1,605 (+193.42%)
Mutual labels:  lsp, language-server
Nvim Lspconfig
Quickstart configurations for the Nvim LSP client
Stars: ✭ 3,410 (+523.4%)
Mutual labels:  lsp, language-server
vscode-tenkawa-php
Visual Studio Code extension integrating Tenkawa PHP language server.
Stars: ✭ 28 (-94.88%)
Mutual labels:  language-server, lsp
toy-language-server
Example language server (LSP) implementation for a toy language
Stars: ✭ 54 (-90.13%)
Mutual labels:  language-server, lsp

CI Slack community Github starts

clojure-lsp

A Language Server for Clojure. Taking a Cursive-like approach of statically analyzing code.


homepagefeaturesinstallationsettingsclientstroubleshootingsupport us


Overview

The goal of this project is to bring great editing tools for Clojure to all editors. It aims to work alongside you to help you navigate, identify and fix errors, perform refactors and much more!

You will get:

  • Autocomplete
  • Jump to definition
  • Find references
  • Renaming
  • Code actions
  • Errors
  • Automatic ns management
  • Refactorings
  • Code lens
  • Semantic tokens (syntax highlighting)
  • Call hierarchy

For all available features, check the features section.


Contribution

Contributions to clojure-lsp are very welcome! You can open an issue or a PR and we'd love to help.


Building

For building the jar manually, run lein bin to generate the embedded jar inside target folder or lein uberjar for building the standalone jar.

GraalVM

Every release the native binaries (Windows, Linux and MacOS) are compiled with GraalVM and uploaded.

To build a native image with GraalVM:

  • Install the GraalVM 21.0.0 for Java 11 and set the GRAALVM_HOME to the installation dir
  • Install native-image with $GRAALVM_HOME/bin/gu install native-image
  • Run from clojure-lsp project root ./graalvm/native-unix-compile.sh or ./graalvm/native-windows-compile.bat.

The build may take some minutes and the result will be a ./clojure-lsp native binary.


Development

For clojure-lsp development, there are 3 possible ways of finding a bug or implementing a new feature:

  • Create a test for your bug/feature, then implement the code following the test.
  • clojure-lsp starts a NREPL server if built with lein with-profile :debug bin, with that it's possible to change the code of a running instance and see the changes on your client in real time. To get the NREPL port, you can check the /tmp/clojure-lsp.*.out log, it will print the NREPL port on server startup or you can get it via server-info custom LSP command.
  • Build clojure-lsp with your changes and test it manually in your client, this is the slowest option, but it makes sense for final tests.
  • For debugging purposes, there is two custom commands server-info and cursor-info.

Support the project

clojure-lsp has more than 8.000 lines of code, to keep all of this working, we need to help the community on a lot of issues and implement new features. As a LSP server, this project is the base for Clojure clients like Emacs(lsp-mode), VSCode(Calva) and vim.

You can help us keep going and improving it by supporting the project

Special thanks to Eccentric-J for the clojure-lsp logo

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].