diff --git a/doc/contributing/Launch.md b/doc/contributing/Launch.md index 6e43ee2..5021432 100644 --- a/doc/contributing/Launch.md +++ b/doc/contributing/Launch.md @@ -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 @@ -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. diff --git a/doc/contributing/README.md b/doc/contributing/README.md index c0de12d..f310f3e 100644 --- a/doc/contributing/README.md +++ b/doc/contributing/README.md @@ -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) \ No newline at end of file +## [Test your code](./test.md) diff --git a/doc/contributing/install.md b/doc/contributing/install.md index e73cc91..0414adf 100644 --- a/doc/contributing/install.md +++ b/doc/contributing/install.md @@ -2,7 +2,7 @@ ## VScode documentation -Please reffer to VSCode documentation. +Please refer to VSCode documentation. ## Run & Debug @@ -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). diff --git a/doc/contributing/test.md b/doc/contributing/test.md index b8ddae2..4630fb0 100644 --- a/doc/contributing/test.md +++ b/doc/contributing/test.md @@ -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. @@ -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. diff --git a/humans.txt b/humans.txt index c032685..d6109d6 100644 --- a/humans.txt +++ b/humans.txt @@ -19,4 +19,7 @@ Contributor: (@NorthboundTrain) Contributor: (@KlfJoat) +Contributor: Vukory +Site: https://www.artstation.com/vukory + Inspiration: https://github.com/jverdeyen/sublime-bats diff --git a/images/icon-dark.svg b/images/icon-dark.svg new file mode 100644 index 0000000..b3ec73b --- /dev/null +++ b/images/icon-dark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/images/icon-light.svg b/images/icon-light.svg new file mode 100644 index 0000000..d28031f --- /dev/null +++ b/images/icon-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/images/icon.png b/images/icon.png index 2b36b4d..b5f0caa 100644 Binary files a/images/icon.png and b/images/icon.png differ diff --git a/package.json b/package.json index 315ae53..f865210 100644 --- a/package.json +++ b/package.json @@ -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", @@ -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": [