2 Commits 2caa134ab0 ... 2b77207566

Author SHA1 Message Date
  VHDL Tool 2b77207566 update screenshots 2 years ago
  VHDL Tool 6b8af28c92 support initialization progress 2 years ago
4 changed files with 2 additions and 1 deletions
  1. BIN
      images/autocompl-syntax.png
  2. BIN
      images/symbols-hover.png
  3. 1 1
      package.json
  4. 1 0
      src/extension.ts

BIN
images/autocompl-syntax.png


BIN
images/symbols-hover.png


+ 1 - 1
package.json

@@ -30,7 +30,7 @@
30 30
         "postinstall": "node ./node_modules/vscode/bin/install"
31 31
     },
32 32
     "dependencies": {
33
-        "vscode-languageclient": "^4.1.4"
33
+        "vscode-languageclient": "^6.1.3"
34 34
     },
35 35
     "devDependencies": {
36 36
         "typescript": "^3.5.1",

+ 1 - 0
src/extension.ts

@@ -33,6 +33,7 @@ export function activate(context: ExtensionContext) {
33 33
 		let clientOptions: LanguageClientOptions = {
34 34
 			// Register the server for VHDL files
35 35
 			documentSelector: ['vhdl'],
36
+			progressOnInitialization: true,
36 37
 		}
37 38
 		
38 39
 		// Create the language client and start the client.