You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When i try running the "Windmill: add a Windmill Workspace" action via the Command Pallet, it triggers a multi-step text input process prompting for URL, Workspace ID, Token.
The issue is that given that some of these inputs are long (especially url and token), it's typical to copy/paste these values from another window, such as a web browser. What happens though is that when vscode loses focus, it has the default behaviour of closing that step, functionally skipping to the next step in the chain.
When i try running the "Windmill: add a Windmill Workspace" action via the Command Pallet, it triggers a multi-step text input process prompting for URL, Workspace ID, Token.
The issue is that given that some of these inputs are long (especially url and token), it's typical to copy/paste these values from another window, such as a web browser. What happens though is that when vscode loses focus, it has the default behaviour of closing that step, functionally skipping to the next step in the chain.
I think this behaviour can be changed by setting:
await vscode.window.showInputBox({
prompt: '...',
ignoreFocusOut: true
});
I'm seeing this on:
Windows 11 Pro, 23H2 (build 22631.4751)
VSCode: 1.96.4 (latest at time of issue)
Extension: 0.2.35 (latest at time of issue)
The text was updated successfully, but these errors were encountered: