Skip to content

Commit c662aef

Browse files
committed
update contributing
1 parent 8c1e297 commit c662aef

File tree

1 file changed

+11
-7
lines changed

1 file changed

+11
-7
lines changed

CONTRIBUTING.md

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,21 +23,25 @@ It allows merging them faster with less conflicts and will reduce review time.
2323
Every PR should contain a test case that covers the added feature or bug fix.
2424
This prevents regressions and makes reviewing the changes easier by proofing correct functionality.
2525

26-
Tests for the language grammar providing the syntax highlighting are in [`syntaxes/tests`](syntaxes/tests/).
26+
Tests for the language grammar (syntax highlighting) are in [`syntaxes/tests`](syntaxes/tests/).
2727
They can be run with the following command:
2828
```
2929
npm run test
3030
```
3131

3232
### Install a dev version
33-
If you'd like to install a development version of the extension, you can run the following:
34-
```sh
35-
npm run install-dev-ext
36-
```
37-
> **Note:** you have to reload the VS Code window if open (run `>reload window` from command palette).
33+
If you'd like to install a development version of the extension, follow these steps:
34+
1. ```sh
35+
npm run install-dev-ext
36+
```
37+
2. Reload the VS Code window:
38+
- Open command palette (<kbd>F1</kbd>)
39+
- Run `>reload window`
40+
41+
> Note: It is not required to uninstall any previous versions.
3842
3943
### Compilation and Linting
40-
Currently there are no features that rely on typescript.
44+
Currently there are no features that rely on Typescript.
4145
Thus there is no need to compile or lint the code during development.
4246

4347
<!-- links -->

0 commit comments

Comments
 (0)