erg/crates/els
2023-03-10 13:26:13 +09:00
..
doc chore(els): improve completion 2023-03-03 01:32:19 +09:00
.gitignore Rename dir: compiler -> crates 2023-01-15 12:03:19 +09:00
Cargo.toml build: update version (v0.6.7) 2023-03-07 21:52:51 +09:00
code_action.rs fix(els): eliminate unwraps 2023-03-07 21:49:47 +09:00
code_lens.rs fix(els): eliminate unwraps 2023-03-07 21:49:47 +09:00
command.rs chore(els): improve signature help 2023-02-27 12:01:09 +09:00
completion.rs feat(els): add deep completion 2023-03-10 13:26:13 +09:00
definition.rs chore(els): improve signature help 2023-02-27 12:01:09 +09:00
diagnostics.rs feat: support var-args lambda function 2023-03-03 16:01:20 +09:00
file_cache.rs fix(els): undesirable behaviors 2023-03-06 00:16:27 +09:00
hir_visitor.rs feat: add restricted visibility syntax 2023-03-05 02:19:18 +09:00
hover.rs chore(els): improve completion 2023-03-03 01:32:19 +09:00
inlay_hint.rs fix(els): undesirable behaviors 2023-03-06 00:16:27 +09:00
lib.rs feat(els): support code lens 2023-02-26 01:16:28 +09:00
main.rs feat(els): support code lens 2023-02-26 01:16:28 +09:00
message.rs fix(els): show error when renaming a builtin API 2023-02-12 12:23:33 +09:00
README.md feat(els): auto-import modules 2023-03-06 11:52:10 +09:00
references.rs chore(els): improve signature help 2023-02-27 12:01:09 +09:00
rename.rs chore(els): improve signature help 2023-02-27 12:01:09 +09:00
semantic.rs chore(els): improve signature help 2023-02-27 12:01:09 +09:00
server.rs feat(els): add deep completion 2023-03-10 13:26:13 +09:00
sig_help.rs chore(els): improve completion 2023-03-03 01:32:19 +09:00
util.rs feat(els): add deep completion 2023-03-10 13:26:13 +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