File tree 8 files changed +87
-0
lines changed
8 files changed +87
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Set default behavior to automatically normalize line endings.
2
+ * text =auto
3
+
Original file line number Diff line number Diff line change
1
+ node_modules
2
+ * .vsix
Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change
1
+ .vscode /**
2
+ .vscode-test /**
3
+ .gitignore
4
+ vsc-extension-quickstart.md
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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!**
Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change
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.
You can’t perform that action at this time.
0 commit comments