Skip to content

Commit 329870d

Browse files
committed
Prepare for publish
1 parent b660189 commit 329870d

File tree

3 files changed

+14
-5
lines changed

3 files changed

+14
-5
lines changed

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,25 @@
22

33
Adds VBA language support to VSCode via LSP compliant Language Server.
44

5+
![VBA LSP](images/vba-lsp.png)
6+
57
## Features
8+
69
* Syntax highlighting (resolved on client)
710
* Semantic highlighting
811
* Folding ranges
912
* Document symbols
10-
* Diagnostics
1113

14+
## Coming Soon
15+
16+
* Diagnostics (info, warnings, and errors)
1217

1318
## Installation
1419

20+
* Through the VBA Marketplace,
21+
* VSCode command palette `ext install sslinky.vba-lsp`, or;
22+
* Download the [visx](/releases/latest).
23+
1524
## Contributing
1625

1726
Contributors welcome! Please see [contributing.md](tbc).

images/vba-lsp.png

199 KB
Loading

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
{
22
"name": "vba-lsp",
3-
"description": "A language server for VBA",
3+
"displayName": "VBA Pro",
4+
"description": "A VBA extension for VSCode with Language Server support",
5+
"icon": "images/vba-lsp-icon.png",
46
"author": "SSlinky",
57
"license": "MIT",
68
"version": "1.1.0",
@@ -27,9 +29,7 @@
2729
"languages": [
2830
{
2931
"id": "vba",
30-
"aliases": [
31-
"VBA"
32-
],
32+
"aliases": ["VBA"],
3333
"extensions": [
3434
".bas",
3535
".cls",

0 commit comments

Comments
 (0)