Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: use new logo and add file association #21

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions doc/contributing/Launch.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
# Launch VScode with your custom Extention
# Launch VScode with your custom Extension

Reffer to VSCode [documentation](https://code.visualstudio.com/api/working-with-extensions/testing-extension) for further details.
Refer to VSCode [documentation](https://code.visualstudio.com/api/working-with-extensions/testing-extension) for further details.

## Launch the extention
## Launch the extension

A `.vscode/launch.json` file is already configured to launches the extension inside a new window.
A `.vscode/launch.json` file is already configured to launch the extension inside a new window.

After properly manage [installation](./install.md), Choose the one of the bellow methode who suits you the most.
After properly manage [installation](./install.md), Choose the one of the bellow method who suits you the most.

### In the window

* Click on the `run & debug` tab on the left.
* On top of the left pannel, select `Extention` in the dropdown (default value).
* On top of the left panel, select `Extension` in the dropdown (default value).
* Click on the play icon.

### On the menu
Expand All @@ -20,10 +20,10 @@ After properly manage [installation](./install.md), Choose the one of the bellow

### Press F5

## Interract with the debug window
## Interact with the debug window

This will open a bedug VSCode window with the pluggin activated.
This will open a debug VSCode window with the plugin activated.

To exit it you can close the window or on the main VSCode window, click on ths stop icon on the appeared overlay.
To exit it you can close the window or on the main VSCode window, click the stop icon on the appeared overlay.

You can use this overlay (on the main window) to rebuild/refresh the test window without stoping and relaunching.
You can use this overlay (on the main window) to rebuild/refresh the test window without stopping and relaunching.
4 changes: 2 additions & 2 deletions doc/contributing/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ If you want to put your hand on anyway, see bellow.

## [Manage dependencies and install](./install.md)

## [Lauch the module](./Launch.md)
## [Launch the module](./Launch.md)

## [Test your code](./test.md)
## [Test your code](./test.md)
4 changes: 2 additions & 2 deletions doc/contributing/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## VScode documentation

Please reffer to VSCode documentation.
Please refer to VSCode documentation.

## Run & Debug

Expand All @@ -26,6 +26,6 @@ npm --version
## Install

* Open the terminal in your VSCode.
* Run the install comand : `npm i`
* Run the install command : `npm i`

You can now [launch your plugin](./Launch.md).
10 changes: 5 additions & 5 deletions doc/contributing/test.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Test your contribution

## how to test the syntaxe and snipets ?
## how to test the syntax and snippets ?

Yet not automation has een provided on the current module.

We recomend to install custom colorization as explained in the module [README.md](../../README.md) or bellow :
We recommend installing custom colorization as explained in the module [README.md](../../README.md) or bellow :

Add this to your VS Code settings.

Expand Down Expand Up @@ -38,18 +38,18 @@ Add this to your VS Code settings.
}
```

You can now go to the `test` folder and check if the module behave as expeted.
You can now go to the `test` folder and check if the module behave as expected.

> Do not forget to manage proper non-regression testing and not only testing your personal updates.

## ES lint

According to the fiew JS code on that specific module, the ES lint config and tasks have not been configured yet.
According to the few JS code on that specific module, the ES lint config and tasks have not been configured yet.

## Markdown lint

There is a `.markdownlint.json` file to preconfigure Lint your docs.
The MDlint task has not been set yet.

If you use the VSCode plusgin it will be managed while you're typing.
If you use the VSCode plugin it will be managed while you're typing.
Otherwise, you can use the terminal to do it manually.
3 changes: 3 additions & 0 deletions humans.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,7 @@ Contributor: (@NorthboundTrain)

Contributor: (@KlfJoat)

Contributor: Vukory
Site: https://www.artstation.com/vukory

Inspiration: https://github.com/jverdeyen/sublime-bats
1 change: 1 addition & 0 deletions images/icon-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions images/icon-light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 6 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "bats",
"displayName": "Bats (Bash Automated Testing System)",
"description": "Bats (Bash Automated Testing System) language support for VSCode.",
"version": "0.1.10",
"version": "0.1.11",
"publisher": "jetmartin",
"author": {
"name": "J-Et. Martin",
Expand Down Expand Up @@ -37,7 +37,11 @@
"extensions": [
".bats"
],
"configuration": "./language-configuration.json"
"configuration": "./language-configuration.json",
"icon": {
"light": "./images/icon-light.svg",
"dark": "./images/icon-dark.svg"
}
}
],
"grammars": [
Expand Down