erg/crates/els
2023-05-01 23:27:53 +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.4) 2023-04-30 20:09:55 +09:00
code_action.rs fix(els): file operation bugs 2023-04-30 18:00:42 +09:00
code_lens.rs refactor(els): request handler names to handle_* 2023-04-27 23:45:32 +09:00
command.rs refactor(els): request handler names to handle_* 2023-04-27 23:45:32 +09:00
completion.rs chore(els): let FileCache: Send + Sync 2023-05-01 23:27:53 +09:00
definition.rs fix(els): goto python API definitions 2023-04-30 21:33:08 +09:00
diagnostics.rs chore(els): let FileCache: Send + Sync 2023-05-01 23:27:53 +09:00
file_cache.rs chore(els): let FileCache: Send + Sync 2023-05-01 23:27:53 +09:00
hir_visitor.rs fix(els): file operation bugs 2023-04-30 18:00:42 +09:00
hover.rs chore(els): let FileCache: Send + Sync 2023-05-01 23:27:53 +09:00
inlay_hint.rs refactor(els): request handler names to handle_* 2023-04-27 23:45:32 +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 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 refactor(els): request handler names to handle_* 2023-04-27 23:45:32 +09:00
rename.rs chore(els): let FileCache: Send + Sync 2023-05-01 23:27:53 +09:00
semantic.rs chore(els): let FileCache: Send + Sync 2023-05-01 23:27:53 +09:00
server.rs chore(els): let FileCache: Send + Sync 2023-05-01 23:27:53 +09:00
sig_help.rs chore(els): let FileCache: Send + Sync 2023-05-01 23:27:53 +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