DEV Community

Cover image for How to Create OWN Visual Studio Code Extension | Code Snippets Extension
Developer Sabbir
Developer Sabbir

Posted on

How to Create OWN Visual Studio Code Extension | Code Snippets Extension

Hello guys

Are you looking to enhance your coding experience in Visual Studio Code? In this informative video tutorial, ST Sabbir, a seasoned developer, will guide you step-by-step on how to create your own Visual Studio Code extension, specifically focusing on code snippets. This extensive tutorial is perfect for both beginner and intermediate programmers who want to how to create visual studio code snippets extension.🔥🔥

â­•OPEN SOURCE CODE SNIPPETSâ­•
https://github.com/devlopersabbir/sabbir-code-snippet

YouTube Video Link

Contributing...

Since this package is fully open-source so, if you would like to contribute to
this project, please follow these steps:

  1. Fork this repository.
  2. Clone your forked repository.
  3. For your changes.
  4. Open snippets directory and if you want to add new framework snippet then create a new file like snippets.java.snippets or Make your changes, and commit them.
    • Remember, don't forget to added your language id inside this array
   "snippets": [
      {
        "language": "html",
        "path": "./snippets/snippets.html-snippets"
      },
      {
        "language": "javascript",
        "path": "./snippets/snippets.javascript-snippets"
      }
    ]
Enter fullscreen mode Exit fullscreen mode
  1. If possible update README.md file based on your changes or new functions.
  2. Push them to your forked repository:
  3. Create a pull request on this repository.
  4. Add a simple message that you made change or add on your pull request.

Top comments (0)