Skip to content

Commit e8db022

Browse files
committedJan 8, 2021
initial
0 parents  commit e8db022

8 files changed

+87
-0
lines changed
 

‎.gitattributes

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Set default behavior to automatically normalize line endings.
2+
* text=auto
3+

‎.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
*.vsix

‎.vscode/launch.json

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// A launch configuration that launches the extension inside a new window
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
{
6+
"version": "0.2.0",
7+
"configurations": [
8+
{
9+
"name": "Extension",
10+
"type": "extensionHost",
11+
"request": "launch",
12+
"args": [
13+
"--extensionDevelopmentPath=${workspaceFolder}"
14+
]
15+
}
16+
]
17+
}

‎.vscodeignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.vscode/**
2+
.vscode-test/**
3+
.gitignore
4+
vsc-extension-quickstart.md

‎CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Change Log
2+
3+
All notable changes to the "commitdev-extension-pack" extension pack will be documented in this file.
4+
5+
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
6+
7+
## [Unreleased]
8+
9+
- Initial release

‎README.md

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# README
2+
3+
## This is the README for your extension pack "commitdev-extension-pack"
4+
5+
You can author your README using Visual Studio Code. Here are some useful editor keyboard shortcuts:
6+
7+
* Split the editor (`Cmd+\` on macOS or `Ctrl+\` on Windows and Linux)
8+
* Toggle preview (`Shift+CMD+V` on macOS or `Shift+Ctrl+V` on Windows and Linux)
9+
* Press `Ctrl+Space` (Windows, Linux) or `Cmd+Space` (macOS) to see a list of Markdown snippets
10+
11+
## For more information
12+
13+
* [Visual Studio Code's Markdown Support](http://code.visualstudio.com/docs/languages/markdown)
14+
* [Markdown Syntax Reference](https://help.github.com/articles/markdown-basics/)
15+
16+
**Enjoy!**

‎package.json

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "commitdev-extension-pack",
3+
"displayName": "commitdev-extension-pack",
4+
"description": "VS Code extension pack for general purpose web dev",
5+
"version": "0.0.1",
6+
"engines": {
7+
"vscode": "^1.52.0"
8+
},
9+
"categories": [
10+
"Extension Packs"
11+
],
12+
"extensionPack": [
13+
"publisher.extensionName"
14+
]
15+
}

‎vsc-extension-quickstart.md

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Welcome to your VS Code Extension Pack
2+
3+
## What's in the folder
4+
5+
* This folder contains all of the files necessary for your extension pack.
6+
* `package.json` - this is the manifest file that defines the list of extensions of the extension pack.
7+
8+
## Get up and running straight away
9+
10+
* Press `F5` to open a new window with your extension loaded.
11+
* Open `Extensions Viewlet` and check your extensions are installed.
12+
13+
## Make changes
14+
15+
* You can relaunch the extension from the debug toolbar after making changes to the files listed above.
16+
* You can also reload (`Ctrl+R` or `Cmd+R` on Mac) the VS Code window with your extension to load your changes.
17+
18+
## Install your extension
19+
20+
* To start using your extension with Visual Studio Code copy it into the `<user home>/.vscode/extensions` folder and restart Code.
21+
* To share your extension with the world, read on https://code.visualstudio.com/docs about publishing an extension.

0 commit comments

Comments
 (0)
Please sign in to comment.