erg/crates/els
Shunsuke Shibayama ced04e5d6a fix: bugs
2023-05-13 16:14:34 +09:00
..
doc chore(els): impl module name completion 2023-03-14 13:12:00 +09:00
.gitignore Rename dir: compiler -> crates 2023-01-15 12:03:19 +09:00
Cargo.toml build: update version (nightly.3) 2023-05-10 22:50:28 +09:00
code_action.rs fix: bugs 2023-05-13 16:14:34 +09:00
code_lens.rs fix: bugs 2023-05-13 16:14:34 +09:00
command.rs fix(els): eliminate unwraps 2023-05-10 12:23:12 +09:00
completion.rs fix(els): eliminate unwraps 2023-05-10 12:23:12 +09:00
definition.rs feat: add special namespaces module/global 2023-05-03 14:32:09 +09:00
diagnostics.rs fix: bugs 2023-05-13 16:14:34 +09:00
diff.rs fix: bugs 2023-05-13 16:14:34 +09:00
file_cache.rs fix: bugs 2023-05-13 16:14:34 +09:00
hir_visitor.rs fix(els): eliminate unwraps 2023-05-04 19:05:27 +09:00
hover.rs fix(els): eliminate unwraps 2023-05-04 19:05:27 +09:00
inlay_hint.rs fix: bugs 2023-05-13 16:14:34 +09:00
lib.rs feat: add ASTDiff and impl lazy compilation 2023-05-13 11:33:48 +09:00
main.rs feat: add ASTDiff and impl lazy compilation 2023-05-13 11:33:48 +09:00
message.rs refactor(els): request handler names to handle_* 2023-04-27 23:45:32 +09:00
README.md feat(els): auto-import modules 2023-03-06 11:52:10 +09:00
references.rs fix(els): eliminate unwraps 2023-05-10 12:23:12 +09:00
rename.rs fix: bugs 2023-05-13 16:14:34 +09:00
semantic.rs feat: add special namespaces module/global 2023-05-03 14:32:09 +09:00
server.rs fix: bugs 2023-05-13 16:14:34 +09:00
sig_help.rs fix(els): eliminate unwraps 2023-05-10 12:23:12 +09:00
util.rs fix(els): file operation bugs 2023-04-30 18:00:42 +09:00

els (erg-language-server)

ELS is a language server for the Erg programming language.

Features

  • Syntax highlighting (by vscode-erg)
  • Code completion
    • Variable completion
    • Method/attribute completion
    • Smart completion (considering type, parameter names, etc.)
    • Auto-import
  • Diagnostics
  • Hover
  • Go to definition
  • Go to implementation
  • Find references
  • Renaming
  • Inlay hint
  • Semantic tokens
  • Code actions
    • eliminate unused variables
    • change variable case
  • Code lens
    • show trait implementations

Installation

cargo install erg --features els