Skip to content

Commit

Permalink
add lsp boilerplate
Browse files Browse the repository at this point in the history
  • Loading branch information
bradlc committed Dec 18, 2018
1 parent def423a commit 99be406
Show file tree
Hide file tree
Showing 20 changed files with 7,199 additions and 4,048 deletions.
3 changes: 2 additions & 1 deletion .gitignore
@@ -1,5 +1,6 @@
out
dist
node_modules
.vscode-test/
.vsix
.DS_Store
.rts2_cache_cjs
39 changes: 13 additions & 26 deletions .vscode/launch.json
@@ -1,28 +1,15 @@
// A launch configuration that compiles the extension and then opens it inside a new window
{
"version": "0.1.0",
"configurations": [
{
"name": "Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}" ],
"stopOnEntry": false,
"sourceMaps": true,
"outFiles": [ "${workspaceRoot}/out/**/*.js" ],
"preLaunchTask": "npm: watch"
},
{
"name": "Extension Tests",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}", "--extensionTestsPath=${workspaceRoot}/out/test" ],
"stopOnEntry": false,
"sourceMaps": true,
"outFiles": [ "${workspaceRoot}/out/test/**/*.js" ],
"preLaunchTask": "npm: watch"
}
]
"version": "0.1.0",
"configurations": [
{
"name": "Launch Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}"],
"stopOnEntry": false,
"sourceMaps": true,
"outFiles": ["${workspaceRoot}/dist/**/*.js"]
}
]
}
9 changes: 0 additions & 9 deletions .vscode/settings.json

This file was deleted.

20 changes: 0 additions & 20 deletions .vscode/tasks.json

This file was deleted.

21 changes: 0 additions & 21 deletions CHANGELOG.md

This file was deleted.

50 changes: 0 additions & 50 deletions README.md

This file was deleted.

Binary file removed icon.png
Binary file not shown.
Binary file removed img/css-highlighting-after.png
Binary file not shown.
Binary file removed img/css-highlighting-before.png
Binary file not shown.
Binary file removed img/css.gif
Binary file not shown.
Binary file removed img/html-hover.gif
Binary file not shown.
Binary file removed img/html.gif
Binary file not shown.
Binary file removed img/sublime/css.gif
Binary file not shown.
Binary file removed img/sublime/html.gif
Binary file not shown.

0 comments on commit 99be406

Please sign in to comment.