File tree 3 files changed +3
-57
lines changed 3 files changed +3
-57
lines changed Original file line number Diff line number Diff line change
1
+ # vscode-syntax-tree
2
+
3
+ VSCode support for the [ syntax_tree] ( https://github.com/ruby-syntax-tree/syntax_tree ) gem.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 3
3
import { ExtensionContext , commands , window } from "vscode" ;
4
4
import { LanguageClient } from "vscode-languageclient/node" ;
5
5
6
- import Disasm from "./Disasm" ;
7
6
import Implicits from "./Implicits" ;
8
7
import startLanguageClient from "./startLanguageClient" ;
9
8
import Visualize from "./Visualize" ;
@@ -31,7 +30,6 @@ export function activate(context: ExtensionContext) {
31
30
await languageClient . onReady ( ) ;
32
31
33
32
context . subscriptions . push (
34
- new Disasm ( languageClient , outputChannel ) ,
35
33
new Implicits ( languageClient , outputChannel ) ,
36
34
new Visualize ( languageClient , outputChannel )
37
35
) ;
You can’t perform that action at this time.
0 commit comments