ignore: fix

This commit is contained in:
Dax Raad
2025-09-19 06:13:45 -04:00
parent 824e035815
commit 7be9dc8e49
2 changed files with 359 additions and 356 deletions

View File

@@ -3,6 +3,7 @@ import { Share } from "../share/share"
import { Format } from "../format"
import { LSP } from "../lsp"
import { Snapshot } from "../snapshot"
import { FileWatcher } from "../file/watcher"
export async function InstanceBootstrap() {
await Plugin.init()
@@ -10,4 +11,5 @@ export async function InstanceBootstrap() {
Format.init()
LSP.init()
Snapshot.init()
FileWatcher.init()
}