lsprotocol-crystal
Language Server Protocol Types implementation for Crystal
lsprotocol
is a Crystal implementation of object types used in the Language Server Protocol (LSP). This repository contains the code generator and the generated types for LSP. Generated using lsprotocol.
Overview
LSP is used by editors to communicate with various tools to enables services like code completion, documentation on hover, formatting, code analysis, etc. The intent of this library is to allow you to build on top of the types used by LSP. This repository will be kept up to date with the latest version of LSP as it is updated.
Installation
dependencies:
lsprotocol:
github: nobodywasishere/lsprotocol-crystal
Usage
Using LSP types
require "lsprotocol"
position = LSP::Position.new(line: 10, character: 3)
Generating LSP types
- Create a python virtual environment:
python -m venv .venv
(use latest python) - Activate the environment:
- Windows:
.venv\Script\activate
- Linux\mac:
source .venv/bin/activate
- Windows:
- Install the generator:
python -m pip install git+https://github.com/microsoft/lsprotocol
ormake install_deps
- Run generator with crystal plugin:
python -m generator --plugin crystalgen --output-dir . --test-dir ./tests
ormake generate_code
- Generate test data:
python -m generator --plugin testdata --output-dir ./data
ormake generate_testdata
- Run tests:
crystal spec
Repository
lsprotocol-crystal
Owner
Statistic
- 5
- 1
- 0
- 1
- 0
- 16 days ago
- July 23, 2024
License
MIT License
Links
Synced at
Thu, 21 Nov 2024 06:31:54 GMT
Languages