WIP: R LSP
This commit is contained in:
parent
d5503db374
commit
d1e2fc278d
|
@ -1872,6 +1872,9 @@ main = do
|
|||
scope: {
|
||||
code: `x = 123 * 234`,
|
||||
},
|
||||
lsp: {
|
||||
start: `R --slave -e "languageserver::run()"`,
|
||||
},
|
||||
template: `print("Hello, world!")
|
||||
`,
|
||||
},
|
||||
|
|
|
@ -66,6 +66,8 @@ python3-pip
|
|||
python3-venv
|
||||
|
||||
# R
|
||||
libcurl4-openssl-dev
|
||||
libxml2-dev
|
||||
r-base
|
||||
|
||||
# Racket
|
||||
|
|
|
@ -89,6 +89,9 @@ npm install -g purescript spago
|
|||
# Python
|
||||
pip3 install black
|
||||
|
||||
# R
|
||||
R -e 'install.packages("languageserver")'
|
||||
|
||||
# ReasonML
|
||||
npm install -g bs-platform
|
||||
opam install -y reason
|
||||
|
|
Loading…
Reference in New Issue