When connecting to IDA and clicking the path InputBox away the resulting workspace is undefined
|
const workspaceFolder = await vscode.window.showInputBox({ |
|
prompt: 'Enter the path to the folder containing the script', |
|
value: currentFolder |
|
}); |
|
socket.send({ |
|
event: Event.SetWorkspace, |
|
path: workspaceFolder |
|
}.toBuffer()); |


When connecting to IDA and clicking the path InputBox away the resulting workspace is
undefinedidacode/idacode/src/extension.ts
Lines 46 to 53 in 4209b63