feat: copy-file autocomplete (#2004)

* add repo file search endpoint and use for copy-file autocomplete

* address feedback and fix i18n errors

* remove unused i18n
This commit is contained in:
Gabriel Gordon-Hall
2026-01-13 17:34:54 +00:00
committed by GitHub
parent 5502a4cad6
commit cdfb081cf8
32 changed files with 296 additions and 241 deletions

View File

@@ -370,6 +370,8 @@ export type DirectoryEntry = { name: string, path: string, is_directory: boolean
export type DirectoryListResponse = { entries: Array<DirectoryEntry>, current_path: string, };
export type SearchMode = "taskform" | "settings";
export type Config = { config_version: string, theme: ThemeMode, executor_profile: ExecutorProfileId, disclaimer_acknowledged: boolean, onboarding_acknowledged: boolean, notifications: NotificationConfig, editor: EditorConfig, github: GitHubConfig, analytics_enabled: boolean, workspace_dir: string | null, last_app_version: string | null, show_release_notes: boolean, language: UiLanguage, git_branch_prefix: string, showcases: ShowcaseState, pr_auto_description_enabled: boolean, pr_auto_description_prompt: string | null, };
export type NotificationConfig = { sound_enabled: boolean, push_enabled: boolean, sound_file: SoundFile, };