loads of UI improvements, also improves the console UI
This commit is contained in:
@@ -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),
|
||||
|
||||
Reference in New Issue
Block a user