Skip to content
Merged
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
28 changes: 25 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Welcome to SnippetMaster - a VS Code extension to boost your productivity.

## Introduction

Exciting news! We have just published our first VS Code extension and it might just be the tool you need to boost your productivity. Check it out [here](https://marketplace.visualstudio.com/items?itemName=vitabletech.snippetmaster).
# SnippetMaster

SnippetMaster is a Visual Studio Code extension that provides custom code snippets for a variety of programming languages. With SnippetMaster, you can save time and increase your productivity by quickly inserting common code patterns and snippets.
Expand Down Expand Up @@ -42,12 +47,29 @@ Contributions are welcome! If you would like to contribute to SnippetMaster, ple
SnippetMaster is licensed under the [MIT License](https://github.com/vitabletec/SnippetMaster/blob/main/LICENSE).

## Features

* Custom code snippets for a variety of programming languages.
* Increases productivity by quickly inserting common code patterns and snippets.
* Supports multiple programming languages like PHP, JavaScript, SQL, Shell, window commands.
* Easy to use and install in Visual Studio Code.
* Open source with a permissive MIT license.
## For more information

* [Visual Studio Code's Markdown Support](http://code.visualstudio.com/docs/languages/markdown)
* [Markdown Syntax Reference](https://help.github.com/articles/markdown-basics/)

**Enjoy!**
## Tutorial

## For more information
Want to learn how to use it? Check out the tutorial [here](https://vitabletec.github.io/SnippetMaster/).

## Rate Us

If you've already tried it, please do rate us on the Marketplace [here](https://marketplace.visualstudio.com/items?itemName=vitabletech.snippetmaster&ssr=false#review-details).

## More Info

Want to know more about the importance of SnippetMaster? Check out this video [here](https://youtu.be/gEW9eqBYod8).

## KT Session

For a KT session on how to use it effectively, watch this video [here](https://youtu.be/SjAkQXMdZqo).
**Enjoy!**
27 changes: 26 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<hr />
<h3>Information:</h3>
<ul>
<li><strong>Version:</strong> <span id="version"></span></li>
<li><strong>Latest Version:</strong> <span id="version"></span></li>
<li><strong>Publisher:</strong> <span id="publisher"></span></li>
<li><strong>Author:</strong> <span id="author"></span></li>
<li><strong>Email:</strong><span id="email"></span></li>
Expand Down Expand Up @@ -85,6 +85,31 @@ <h3>Snippets Description Table:</h3>
<tbody id="table-body"></tbody>
</table>
</div>
<div class="col-md-12 mt-5 table-responsive">
<h2>Tutorial</h2>
<p>
Want to learn how to use it? Check out the tutorial
<a href="https://youtu.be/eG5Na0KTGH0">here</a>.
</p>
<h2>Rate Us</h2>
<p>
If you've already tried it, please do rate us on the Marketplace
<a
href="https://marketplace.visualstudio.com/items?itemName=vitabletech.snippetmaster&amp;ssr=false#review-details"
>here</a
>.
</p>
<h2>More Info</h2>
<p>
Want to know more about the importance of SnippetMaster? Check out this video
<a href="https://youtu.be/gEW9eqBYod8">here</a>.
</p>
<h2>KT Session</h2>
<p>
For a KT session on how to use it effectively, watch this video
<a href="https://youtu.be/SjAkQXMdZqo">here</a>.
</p>
</div>
</div>
</div>
</div>
Expand Down
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "snippetmaster",
"displayName": "Snippet Master",
"description": "A Visual Studio Code extension that provides custom code snippets for a variety of programming languages. With SnippetMaster, you can save time and increase your productivity by quickly inserting common code patterns and snippets.",
"version": "1.0.1",
"version": "1.0.2",
"publisher": "vitabletech",
"author": {
"name": "Mayank singh Kushwah",
Expand Down Expand Up @@ -41,6 +41,10 @@
{
"language": "",
"path": "./snippets/shell.code-snippets"
},
{
"language": "",
"path": "./snippets/other_stuff.code-snippets"
}
]
},
Expand Down
2 changes: 1 addition & 1 deletion snippets/php.code-snippets
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"print File Log": {
"prefix": "_printFileLog",
"body": [
"$$print_file = fopen(DIR_WS_IMAGES_TEMPIMAGES.'custom_log.log','a');\nfwrite($$print_file,print_r($$writedata,true));"
"$$print_file = fopen(__DIR__.'custom_log.log','a');\nfwrite($$print_file,print_r($$writedata,true));"
],
"description": "Opens a file for writing and writes data to it without exiting the script."
},
Expand Down