Skip to content

devreplay/devreplay-languageserver

Repository files navigation

DevReplay Language Server

NPM Version NPM Downloads License

Installing

sudo npm install -g devreplay-server

Running the Language server

devreplay-server --stdio

Editor Extension Support

  • Visual Studio Code
  • Atom
  • Sublime Text
  • Vim/NeoVim
  • Emacs

Visual Studio Code

DevReplay for VS Code is available here

Sublime Text

LSP (untested)

"devreplaysvr": {
    "command": [
        "devreplay-server",
        "--stdio",
    ],
    "enabled": true,
    "languageId": "python"
}

vim and neovim

  1. Install devreplay-server globally
  2. Install LanguageClient-neovim
  3. Add the following to neovim's configuration (the case if you want to use for python and javascript)
let g:LanguageClient_serverCommands = {
    \ 'python': ['devreplay-server', '--stdio'],
    \ 'javascript': ['devreplay-server', '--stdio'],
    \ }

Emacs

lsp-mode (untested)

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published