Language Support#
Serena’s semantic code analysis capabilities build on language servers using the widely implemented language server protocol (LSP). The LSP provides a set of versatile code querying and editing functionalities based on symbolic understanding of the code. Equipped with these capabilities, Serena discovers and edits code just like a seasoned developer making use of an IDE’s capabilities would. Serena can efficiently find the right context and do the right thing even in very large and complex projects! So not only is it free and open-source, it frequently achieves better results than existing solutions that charge a premium.
Language servers provide support for a wide range of programming languages. With Serena, we provide direct, out-of-the-box support for:
AL
Bash
C#
C/C++
(you may experience issues with finding references, we are working on it)Clojure
Dart
Elixir
(requires installation of NextLS and Elixir; Windows not supported)Elm
(requires Elm compiler)Erlang
(requires installation of beam and erlang_ls, experimental, might be slow or hang)Fortran
(requires installation of fortls:pip install fortls)Go
(requires installation ofgopls)Haskell
(automatically locates HLS via ghcup, stack, or system PATH; supports Stack and Cabal projects)Java
(Note: Uses quirky symbol names for methods that include the full method signature; this causes a variety of problems!)JavaScript
Julia
Kotlin
(uses the pre-alpha official kotlin LS, some issues may appear)Lua
Markdown
(must be explicitly specified via--language markdownwhen generating project config, primarily useful for documentation-heavy projects)Nix
(requires nixd installation)Perl
(requires installation of Perl::LanguageServer)PHP
(uses Intelephense LSP; setINTELEPHENSE_LICENSE_KEYenvironment variable for premium features)Python
R
(requires installation of thelanguageserverR package)Ruby
(by default, uses ruby-lsp, specify ruby_solargraph as your language to use the previous solargraph based implementation)Rust
(requires rustup - uses rust-analyzer from your toolchain)Scala
(requires some manual setup; uses Metals LSP)Swift
TypeScript
Zig
(requires installation of ZLS - Zig Language Server)
Support for further languages can easily be added by providing a shallow adapter for a new language server implementation, see Serena’s memory on that.