core: fix file search limit handling and ensure File module initialization

This commit is contained in:
Dax Raad
2025-10-02 00:18:11 -04:00
parent 19cb211b62
commit 5079ba7ce5
2 changed files with 3 additions and 1 deletions

View File

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