(_include: string, _exclude?: string)
| 118 | } |
| 119 | |
| 120 | findFiles(_include: string, _exclude?: string): Thenable<Uri[]> { |
| 121 | // Basic implementation - could be enhanced with glob patterns |
| 122 | return Promise.resolve([]) |
| 123 | } |
| 124 | |
| 125 | async openTextDocument(uri: Uri): Promise<TextDocument> { |
| 126 | logs.debug(`openTextDocument called for: ${uri.fsPath}`, "VSCode.Workspace") |