An open API service indexing awesome lists of open source software.

https://github.com/uki00a/deno-lsp

An experimental LSP server implementation for Deno🦕
https://github.com/uki00a/deno-lsp

Last synced: about 1 year ago
JSON representation

An experimental LSP server implementation for Deno🦕

Awesome Lists containing this project

README

          

# deno-lsp (WIP)

An experimental LSP server implementation for Deno🦕

## Usage

**vim-lsp**

```vim
autocmd User lsp_setup call lsp#register_server({
\ 'name': 'deno-lsp',
\ 'cmd': {server_info->['deno', 'run', '--allow-read', '--allow-write', '--quiet', 'cli.ts']},
\ 'allowlist': ['typescript'],
\ 'blocklist': [],
\ 'config': {},
\ 'workspace_config': {'param': {'enabled': v:true}},
\ 'languageId': {server_info->'typescript'},
\ })
```

## See also

* https://github.com/theia-ide/typescript-language-server
* https://github.com/tennashi/lsp_spec_ja