Skip to content

Commit 99be406

Browse files
committed
add lsp boilerplate
1 parent def423a commit 99be406

20 files changed

+7199
-4048
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
out
1+
dist
22
node_modules
33
.vscode-test/
44
.vsix
55
.DS_Store
6+
.rts2_cache_cjs

.vscode/launch.json

+13-26
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,15 @@
1-
// A launch configuration that compiles the extension and then opens it inside a new window
21
{
3-
"version": "0.1.0",
4-
"configurations": [
5-
{
6-
"name": "Extension",
7-
"type": "extensionHost",
8-
"request": "launch",
9-
"runtimeExecutable": "${execPath}",
10-
"args": ["--extensionDevelopmentPath=${workspaceRoot}" ],
11-
"stopOnEntry": false,
12-
"sourceMaps": true,
13-
"outFiles": [ "${workspaceRoot}/out/**/*.js" ],
14-
"preLaunchTask": "npm: watch"
15-
},
16-
{
17-
"name": "Extension Tests",
18-
"type": "extensionHost",
19-
"request": "launch",
20-
"runtimeExecutable": "${execPath}",
21-
"args": ["--extensionDevelopmentPath=${workspaceRoot}", "--extensionTestsPath=${workspaceRoot}/out/test" ],
22-
"stopOnEntry": false,
23-
"sourceMaps": true,
24-
"outFiles": [ "${workspaceRoot}/out/test/**/*.js" ],
25-
"preLaunchTask": "npm: watch"
26-
}
27-
]
2+
"version": "0.1.0",
3+
"configurations": [
4+
{
5+
"name": "Launch Extension",
6+
"type": "extensionHost",
7+
"request": "launch",
8+
"runtimeExecutable": "${execPath}",
9+
"args": ["--extensionDevelopmentPath=${workspaceRoot}"],
10+
"stopOnEntry": false,
11+
"sourceMaps": true,
12+
"outFiles": ["${workspaceRoot}/dist/**/*.js"]
13+
}
14+
]
2815
}

.vscode/settings.json

-9
This file was deleted.

.vscode/tasks.json

-20
This file was deleted.

CHANGELOG.md

-21
This file was deleted.

README.md

-50
This file was deleted.

icon.png

-18.6 KB
Binary file not shown.

img/css-highlighting-after.png

-33.6 KB
Binary file not shown.

img/css-highlighting-before.png

-32.5 KB
Binary file not shown.

img/css.gif

-1.4 MB
Binary file not shown.

img/html-hover.gif

-592 KB
Binary file not shown.

img/html.gif

-2.77 MB
Binary file not shown.

img/sublime/css.gif

-1.06 MB
Binary file not shown.

img/sublime/html.gif

-1.31 MB
Binary file not shown.

0 commit comments

Comments
 (0)