Support for setting userdata types, validating them and autocompleting them

This commit is contained in:
2018-11-29 18:13:45 +01:00
parent b1b863d5a3
commit e0420e9315
9 changed files with 116 additions and 11 deletions

View File

@@ -60,7 +60,8 @@ function activateLanguageServer(context: vscode.ExtensionContext) {
fileEvents: [
vscode.workspace.createFileSystemWatcher("**/.clientrc"),
vscode.workspace.createFileSystemWatcher("**/.yup"),
vscode.workspace.createFileSystemWatcher("**/.lua")
vscode.workspace.createFileSystemWatcher("**/.lua"),
vscode.workspace.createFileSystemWatcher("**/.upsilon/*.json")
]
}
};
@@ -88,4 +89,3 @@ export function activate(context: vscode.ExtensionContext) {
// this method is called when your extension is deactivated
export function deactivate() {}
6;