erg/crates/els
2023-06-26 13:05:14 +09:00
..
doc Merge branch 'main' into rwlock 2023-06-10 17:45:08 +09:00
.gitignore Rename dir: compiler -> crates 2023-01-15 12:03:19 +09:00
Cargo.toml build: update version (nightly.1) 2023-06-26 13:05:14 +09:00
channels.rs feat(els): parallelize Server 2023-06-21 01:16:53 +09:00
code_action.rs fix(els): eliminate unwraps 2023-06-23 20:42:00 +09:00
code_lens.rs chore(els): add AnalysisResultCache 2023-06-19 11:14:56 +09:00
command.rs Merge branch 'main' into rwlock 2023-06-10 17:45:08 +09:00
completion.rs fix(els): eliminate unwraps 2023-06-23 20:42:00 +09:00
definition.rs fix(els): eliminate unwraps 2023-06-23 20:42:00 +09:00
diagnostics.rs fix: errors in other modules are ignored 2023-06-22 16:32:10 +09:00
diff.rs fix(els): incremental updating var-definition 2023-06-21 15:08:03 +09:00
file_cache.rs fix: rename bug 2023-06-21 13:49:39 +09:00
hir_visitor.rs chore(els): add AnalysisResultCache 2023-06-19 11:14:56 +09:00
hover.rs fix: hover bug 2023-06-21 13:46:21 +09:00
inlay_hint.rs chore(els): add AnalysisResultCache 2023-06-19 11:14:56 +09:00
lib.rs feat(els): parallelize Server 2023-06-21 01:16:53 +09:00
main.rs feat(els): parallelize Server 2023-06-21 01:16:53 +09:00
message.rs refactor(els): request handler names to handle_* 2023-04-27 23:45:32 +09:00
README.md Merge branch 'main' into rwlock 2023-06-10 17:45:08 +09:00
references.rs Merge branch 'main' into rwlock 2023-06-10 17:45:08 +09:00
rename.rs fix: rename bug 2023-06-21 13:49:39 +09:00
semantic.rs Merge branch 'main' into rwlock 2023-06-10 17:45:08 +09:00
server.rs feat(els): add neighbor_completion 2023-06-22 20:49:25 +09:00
sig_help.rs Merge branch 'main' into rwlock 2023-06-10 17:45:08 +09:00
util.rs Merge branch 'main' into rwlock 2023-06-10 17:45:08 +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
    • extract variables/functions
    • inline variables
  • Code lens
    • show trait implementations

Installation

cargo install erg --features els