Skip to content

Commit 4d18769

Browse files
committed
提交vsc插件
0 parents  commit 4d18769

9 files changed

+723
-0
lines changed

.gitignore

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

.vscode/launch.json

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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+
"runtimeExecutable": "${execPath}",
13+
"args": [
14+
"--extensionDevelopmentPath=${workspaceFolder}"
15+
]
16+
}
17+
]
18+
}

.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

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Change Log
2+
3+
All notable changes to the `Vue` extension will be documented in this file.
4+
5+
- 2019.11.28 Update html sinppets
6+
- 2019.11.29 Update javascript sinppets
7+
- 2019.11.30 Delete useless configuration
8+
- 2019.12.1 Change the extension logo
9+
- 2019.12.2 Update html and javascript sinppets
10+
- 2019.12.3 Add vue snippets
11+
12+
# Unreleased
13+
14+
- Add syntax highlight
15+
- Add css snippets
16+
- Change the extension logo
17+
- Update readme
18+
- Supported more languages

0 commit comments

Comments
 (0)