Skip to content

Commit 9bae89b

Browse files
authored
Merge pull request #64 from DecimalTurn/patch-1
Use "VS Code" spelling + link to marketplace in README
2 parents a75aaf7 + 9261b22 commit 9bae89b

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<img src="images/vba-lsp-icon.png" alt="drawing" width="128"/>
33
</p>
44

5-
# VBA Pro Extension for VScode
5+
# VBA Pro Extension for VS Code
66

77
Provides Visual Basic for Applications (VBA) language support in Visual Studio Code using a Language Server Protocol (LSP) compliant backend. We all know that VBA is a dinosaur from the '90s, but it doesn't have to feel like one.
88

@@ -38,7 +38,7 @@ A small but growing collection of highly useful code snippets. The idea is to ke
3838

3939
### Document Symbols
4040

41-
Document Symbols allow you to view a structured outline of your code in the VSCode Outline view and breadcrumbs. These make it easy to understand and navigate files.
41+
Document Symbols allow you to view a structured outline of your code in the VS Code Outline view and breadcrumbs. These make it easy to understand and navigate files.
4242

4343
### Document Diagnostics
4444

@@ -64,8 +64,8 @@ End Property
6464

6565
## Installation
6666

67-
* Through the VSCode Marketplace,
68-
* VSCode command palette `ext install notisdataanalytics.vba-lsp`, or;
67+
* Through the [VS Code Marketplace](https://marketplace.visualstudio.com/items?itemName=NotisDataAnalytics.vba-lsp),
68+
* VS Code command palette `ext install notisdataanalytics.vba-lsp`, or;
6969
* Download the [visx](../../releases/latest).
7070

7171
## Contributing

client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vba-lsp-client",
3-
"description": "VSCode part of a language server",
3+
"description": "VS Code part of a language server",
44
"author": "SSlinky",
55
"license": "MIT",
66
"version": "0.0.1",

contributing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
## Setup
55

66
1. Fork this repo
7-
1. Install VSCode Extension [esBuild Problem Matchers](https://marketplace.visualstudio.com/items?itemName=connor4312.esbuild-problem-matchers).
7+
1. Install VS Code Extension [esBuild Problem Matchers](https://marketplace.visualstudio.com/items?itemName=connor4312.esbuild-problem-matchers).
88
2. Install [Java](https://www.oracle.com/au/java/technologies/downloads/) >= 11
99
3. Install [NPM](https://github.com/coreybutler/nvm-windows)
1010
4. `npm install` to install dependencies.
1111
5. `npm run textMate` first time and every time grammar is changed.
1212
6. `npm run antlr` first time and every time grammar is changed.
1313
7. Create a `.\sample` directory as a default workspace for client debugging (or update .\\.vscode\\launch.json as preferred).
14-
7. (Optional) Install [ANTLR4 grammar syntax support](https://marketplace.visualstudio.com/items?itemName=mike-lischke.vscode-antlr4) VSCode extension.
14+
7. (Optional) Install [ANTLR4 grammar syntax support](https://marketplace.visualstudio.com/items?itemName=mike-lischke.vscode-antlr4) VS Code extension.
1515
Note: to debug a grammar, you'll first need to activate the extension by opening one of the *.g4 files.
1616

1717
To contribute, you'll need to [create a pull request from a fork](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request-from-a-fork).

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vba-lsp",
33
"type": "commonjs",
44
"displayName": "VBA Pro",
5-
"description": "A VBA extension for VSCode with Language Server support",
5+
"description": "A VBA extension for VS Code with Language Server support",
66
"icon": "images/vba-lsp-icon.png",
77
"author": "SSlinky",
88
"license": "MIT",

0 commit comments

Comments
 (0)