-
Notifications
You must be signed in to change notification settings - Fork 287
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow pid or host:port entry in the process picker #2078
Comments
I want to attach to vscode insiders exthost: Since the process name does not say node, and it won't appear. This kind of situation is more common now with features like https://nodejs.org/api/single-executable-applications.html If you follow the guide on the URL above, you end up with a binary named |
It looks like the picker won't accept inputs easily.. the input is just used as a filter over the picker choices? vscode-js-debug/src/ui/processPicker.ts Lines 135 to 139 in 9419f57
Maybe it's simpler to tackle this with a user-override on the regex instead, ala #1480 (comment) |
Or maybe just an option to "Show all processes..." in the picker |
You're right, an escape hatch to be able to filter over all the processes with a pid/port or name like |
Is your feature request related to a problem? Please describe.
The regexp for showing available processes can be quite frustrating, esp when I already know the target pid/port I'm trying to debug.
Describe the feature you'd like
Under
Debug: Attach to Node Process
when a dialog appears with a text box placeholderPick the node.js process to attach to
, I would love to be able to paste something like 1234 or 127.0.0.1:56777The text was updated successfully, but these errors were encountered: