loads of UI improvements, also improves the console UI

This commit is contained in:
2026-09-03 09:14:30 +02:00
parent 37d15a29f0
commit 03e1f90515
16 changed files with 1108 additions and 81 deletions

View File

@@ -84,6 +84,11 @@ const api = {
files: (): Promise<string[]> => ipcRenderer.invoke('search:files'),
},
symbols: {
names: (): Promise<string[]> => ipcRenderer.invoke('symbols:names'),
lookup: (name: string) => ipcRenderer.invoke('symbols:lookup', name),
},
dialog: {
unsavedClose: (path: string): Promise<'save' | 'discard' | 'cancel'> =>
ipcRenderer.invoke('dialog:unsavedClose', path),