sudo npm install -g devreplay-server
devreplay-server --stdio
- Visual Studio Code
- Atom
- Sublime Text
- Vim/NeoVim
- Emacs
DevReplay for VS Code is available here
LSP (untested)
"devreplaysvr": {
"command": [
"devreplay-server",
"--stdio",
],
"enabled": true,
"languageId": "python"
}
- Install
devreplay-server
globally - Install LanguageClient-neovim
- 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'],
\ }
lsp-mode (untested)