Skip to content
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

Add cwd parameter which is not optional anymore #3240

Merged
merged 1 commit into from Jul 31, 2022

Conversation

danyspin97
Copy link
Contributor

cwd field has been changed in #2959 by making it a required field.
However, when starting the debugging session, cwd is not set, causing
an error in the deserialization part. Manually set cwd to the current
directory as a quick fix.

cwd field has been changed in helix-editor#2959 by making it a required field.
However, when starting the debugging session, cwd is not set, causing
an error in the deserialization part. Manually set cwd to the current
directory as a quick fix.
@the-mikedavis
Copy link
Member

Trying this locally it works for me when using DAP with Erlang. I don't see the "error in the deserialization part" you refer to on master though. Is that coming from debugging Rust?

@danyspin97
Copy link
Contributor Author

Yea, I am debugging a Rust program. The error is here:

 let arguments: dap::requests::RunInTerminalArguments =
                        serde_json::from_value(request.arguments.unwrap_or_default()).unwrap();

serde_json is deserializing request.arguments to RunInTerminalArguments, but cwd is not set and it's required.

Copy link
Member

@the-mikedavis the-mikedavis left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Makes sense, thanks for the fix!

@the-mikedavis the-mikedavis merged commit 110eb73 into helix-editor:master Jul 31, 2022
GreasySlug pushed a commit to GreasySlug/helix that referenced this pull request Aug 2, 2022
thomasskk pushed a commit to thomasskk/helix that referenced this pull request Sep 9, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants