================ @@ -0,0 +1,37 @@ +import * as vscode from "vscode"; + +export class LaunchUriHandler implements vscode.UriHandler { + async handleUri(uri: vscode.Uri) { + try { + const params = new URLSearchParams(uri.query); + if (uri.path == '/launch/config') { ---------------- vogelsgesang wrote:
I decided to go with a hybrid solution: Support both `config` and separate URL parameters. The most commonly used arguments are supported via separate URL params. All other parameters can still be provided via the `config` parameter. That way, we don't necessarily need to keep the lists in sync https://github.com/llvm/llvm-project/pull/125843 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits