Skip to content

Commit 8d77a8a

Browse files
committed
Test 2
1 parent bfcbeb7 commit 8d77a8a

12 files changed

+107
-0
lines changed

.DS_Store

6 KB
Binary file not shown.

.gitattributes

Lines changed: 3 additions & 0 deletions
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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
*.vsix

.vscode/launch.json

Lines changed: 17 additions & 0 deletions
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

Lines changed: 4 additions & 0 deletions
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

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Change Log
2+
All Changes to the Snippets 2 Extension Will be Documented in This File
3+
4+
5+
## [1.0.0]
6+
7+
- Initial Release Of Snippets 2

icon.png

3.51 KB
Loading

package.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"name": "snippets-2",
3+
"displayName": "Snippets 2",
4+
"description": "Some Snippets For Visual Studio Code To Make It Easier And Faster To Code",
5+
"version": "1.0.0",
6+
"publisher": "Binary Bytes",
7+
"icon": "icon.png",
8+
"engines": {
9+
"vscode": "^1.62.0"
10+
},
11+
"categories": [
12+
"Snippets"
13+
],
14+
"contributes": {
15+
"snippets": [{
16+
"language": "html",
17+
"path": "./snippets/html.code-snippets"
18+
},
19+
{
20+
"language": "javascript",
21+
"path": "./snippets/js.code-snippets"
22+
},
23+
{
24+
"language": "css",
25+
"path": "./snippets/css.code-snippets"
26+
}
27+
]
28+
}
29+
}

snippets/css.code-snippets

Whitespace-only changes.

snippets/html.code-snippets

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"HTML With JS & Css": {
3+
"prefix": "!hjc",
4+
"body": [
5+
"<!DOCTYPE html>",
6+
"<html lang=\"en\">",
7+
"",
8+
"<head>",
9+
" <meta charset=\"UTF-8\">",
10+
" <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">",
11+
" <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">",
12+
" <title>Document</title>",
13+
"</head>",
14+
"",
15+
"<body>",
16+
" <script src=\"${1:script}.js\">",
17+
" <link rel=\"stylesheet\" href=\"${0:styles}.css\"",
18+
"</body>"
19+
],
20+
"description": "HTML Boilerplate With Javascript & Css"
21+
}
22+
}

0 commit comments

Comments
 (0)