File tree 3 files changed +54
-0
lines changed
3 files changed +54
-0
lines changed Original file line number Diff line number Diff line change
1
+ // A launch configuration that launches the extension inside a new window
2
+ {
3
+ "version" : " 0.1.0" ,
4
+ "configurations" : [
5
+ {
6
+ "name" : " Launch Extension" ,
7
+ "type" : " extensionHost" ,
8
+ "request" : " launch" ,
9
+ "runtimeExecutable" : " ${execPath}" ,
10
+ "args" : [" --extensionDevelopmentPath=${workspaceRoot}" ]
11
+ }
12
+ ]
13
+ }
Original file line number Diff line number Diff line change
1
+ # Change Log
2
+ All notable changes to the "vue-vscode-snippets" extension will be documented in this file.
3
+
4
+ Check [ Keep a Changelog] ( http://keepachangelog.com/ ) for recommendations on how to structure this file.
5
+
6
+ ## [ Unreleased]
7
+ - Initial release
Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " vue-vscode-snippets" ,
3
+ "displayName" : " Vue VSCode Snippets" ,
4
+ "description" : " Snippets that will supercharge your Vue workflow" ,
5
+ "version" : " 0.0.1" ,
6
+ "publisher" : " sdras" ,
7
+ "engines" : {
8
+ "vscode" : " ^1.15.0"
9
+ },
10
+ "repository" : {
11
+ "type" : " git" ,
12
+ "url" : " https://github.com/sdras/vue-vscode-snippets.git"
13
+ },
14
+ "keywords" : [
15
+ " Vue" ,
16
+ " Vue 2" ,
17
+ " Vue Snippets"
18
+ ],
19
+ "categories" : [
20
+ " Snippets"
21
+ ],
22
+ "contributes" : {
23
+ "snippets" : [
24
+ {
25
+ "language" : " vue" ,
26
+ "path" : " ./snippets/vue.json"
27
+ },
28
+ {
29
+ "language" : " plaintext" ,
30
+ "path" : " ./snippets/plaintext.json"
31
+ }
32
+ ]
33
+ }
34
+ }
You can’t perform that action at this time.
0 commit comments