Skip to content

Commit a5fce60

Browse files
committed
Add icon
1 parent cc764b1 commit a5fce60

File tree

3 files changed

+4
-37
lines changed

3 files changed

+4
-37
lines changed

README.md

Lines changed: 2 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,3 @@
1-
# LSP Example
1+
# Rue Language
22

3-
Heavily documented sample code for https://code.visualstudio.com/api/language-extensions/language-server-extension-guide
4-
5-
## Functionality
6-
7-
This Language Server works for plain text file. It has the following language features:
8-
- Completions
9-
- Diagnostics regenerated on each file change or configuration change
10-
11-
It also includes an End-to-End test.
12-
13-
## Structure
14-
15-
```
16-
.
17-
├── client // Language Client
18-
│ ├── src
19-
│ │ ├── test // End to End tests for Language Client / Server
20-
│ │ └── extension.ts // Language Client entry point
21-
├── package.json // The extension manifest.
22-
└── server // Language Server
23-
└── src
24-
└── server.ts // Language Server entry point
25-
```
26-
27-
## Running the Sample
28-
29-
- Run `npm install` in this folder. This installs all necessary npm modules in both the client and server folder
30-
- Open VS Code on this folder.
31-
- Press Ctrl+Shift+B to start compiling the client and server in [watch mode](https://code.visualstudio.com/docs/editor/tasks#:~:text=The%20first%20entry%20executes,the%20HelloWorld.js%20file.).
32-
- Switch to the Run and Debug View in the Sidebar (Ctrl+Shift+D).
33-
- Select `Launch Client` from the drop down (if it is not already).
34-
- Press ▷ to run the launch config (F5).
35-
- In the [Extension Development Host](https://code.visualstudio.com/api/get-started/your-first-extension#:~:text=Then%2C%20inside%20the%20editor%2C%20press%20F5.%20This%20will%20compile%20and%20run%20the%20extension%20in%20a%20new%20Extension%20Development%20Host%20window.) instance of VSCode, open a document in 'plain text' language mode.
36-
- Type `j` or `t` to see `Javascript` and `TypeScript` completion.
37-
- Enter text content such as `AAA aaa BBB`. The extension will emit diagnostics for all words in all-uppercase.
3+
This extension adds support for the [Rue](https://rue-lang.com) programming language for [Chia](https://chia.net).

images/rue.png

410 KB
Loading

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
"description": "Language support and LSP client for the Rue programming language",
55
"author": "Brandon Haggstrom",
66
"license": "MIT",
7-
"version": "1.0.0",
7+
"version": "1.0.1",
8+
"icon": "images/rue.png",
89
"repository": {
910
"type": "git",
1011
"url": "https://github.com/rigidity/rue-vscode"

0 commit comments

Comments
 (0)