Skip to content

Commit af04acb

Browse files
committed
Rename
1 parent 85a424f commit af04acb

File tree

5 files changed

+16
-15
lines changed

5 files changed

+16
-15
lines changed

README.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,16 @@
1-
# ReScript Language Server
1+
# rescript-vscode
2+
3+
The official VSCode plugin for ReScript.
24

35
## Prerequisite
46

57
`bs-platform 8.2.0` installed locally in your project.
68

79
## Installation
810

9-
### VSCode
10-
Download the latest release here: https://github.com/rescript-lang/rescript-language-server/releases
11-
12-
Go to VSCode, Command Palette (cmd-shift-p) -> "Extensions: Install from VSIX", then select the `rescript-language-server.vsix` you just downloaded.
11+
Download the latest release here: https://github.com/rescript-lang/rescript-vscode/releases
1312

14-
### Other Editors With Language-Server Support
15-
For now, you have to clone the repo and run `npm run compile`. The language server will be at `server/out/server.js`. Wire that into your editor.
13+
Go to VSCode, Command Palette (cmd-shift-p) -> "Extensions: Install from VSIX", then select the `rescript-vscode.vsix` you just downloaded.
1614

1715
## Features
1816

@@ -29,6 +27,9 @@ For now, you have to clone the repo and run `npm run compile`. The language serv
2927

3028
## Develop
3129

30+
### Other Editors With Language-Server Support
31+
This repo happens to also contain a language-server usable by other editors. If you'd like to use this language-server with e.g. Atom, for now, you have to clone the repo and run `npm run compile`. The language server will be at `server/out/server.js`. Wire that into your editor.
32+
3233
### Structure
3334

3435
```

client/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "rescript-language-client",
3-
"description": "VSCode part of a language server",
3+
"description": "VSCode frontend that communicates with the server",
44
"author": "chenglou",
55
"license": "MIT",
66
"version": "0.0.1",
77
"publisher": "chenglou",
88
"repository": {
99
"type": "git",
10-
"url": "https://github.com/rescript-lang/rescript-language-server"
10+
"url": "https://github.com/rescript-lang/rescript-vscode"
1111
},
1212
"engines": {
1313
"vscode": "^1.43.0"

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
2-
"name": "rescript-language-server",
3-
"description": "The official ReScript language server",
2+
"name": "rescript-vscode",
3+
"description": "The official VSCode plugin for ReScript.",
44
"author": "chenglou",
55
"license": "MIT",
66
"version": "0.0.3",
77
"repository": {
88
"type": "git",
9-
"url": "https://github.com/rescript-lang/rescript-language-server"
9+
"url": "https://github.com/rescript-lang/rescript-vscode"
1010
},
1111
"publisher": "chenglou",
1212
"categories": [],

server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
},
1010
"repository": {
1111
"type": "git",
12-
"url": "https://github.com/rescript-lang/rescript-language-server"
12+
"url": "https://github.com/rescript-lang/rescript-vscode"
1313
},
1414
"dependencies": {
1515
"vscode-languageserver": "^6.1.1",

0 commit comments

Comments
 (0)