Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initial implementation of IntelliSense #29

Merged
merged 15 commits into from
Feb 6, 2021
Merged
2 changes: 1 addition & 1 deletion client/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {
LanguageClientOptions,
ServerOptions,
TransportKind
} from 'vscode-languageclient';
} from 'vscode-languageclient/node';

let client: LanguageClient;

Expand Down
147 changes: 115 additions & 32 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"url": "https://github.com/teal-language/vscode-teal.git"
},
"engines": {
"vscode": "^1.46.0"
"vscode": "^1.52.0"
},
"categories": [
"Programming Languages"
Expand Down Expand Up @@ -65,18 +65,18 @@
},
"dependencies": {
"tmp-promise": "^3.0.2",
"vscode-languageclient": "^6.1.3",
"vscode-languageserver": "^6.1.1",
"vscode-languageclient": "^7.0.0",
"vscode-languageserver": "^7.0.0",
"vscode-languageserver-textdocument": "^1.0.1",
"vscode-uri": "^2.1.2"
"vscode-uri": "^3.0.2"
},
"devDependencies": {
"@types/node": "^14.14.22",
"@types/tmp": "^0.2.0",
"@types/vscode": "^1.46.0",
"@types/vscode": "^1.52.0",
"ovsx": "0.1.0-next.a9154dc",
"typescript": "^4.1.3",
"vsce": "^1.84.0"
"vsce": "^1.85.0"
},
"scripts": {
"package": "vsce package",
Expand Down
Loading