-
Notifications
You must be signed in to change notification settings - Fork 12
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 to customize parameters passed to verify in DafnyServer #41
Comments
Hi @ssaavedra That sounds like a great addition. Would you mind opening a pull request for that? 🙂 Adding the setting should be possible by extending the Dafny Settings Interface and adding it to the package.json of the client part. |
Thanks for the cue, I just opened #42 😉 I have no idea about VSCode extensions (I've using the editor for a couple of hours, have been using Emacs and still doing so), so please feel free to review any issues. Also, it seems that configuration changes are not picked up automatically by the extension and that it instead needs to be reloaded (by means of |
Great, thanks for your contribution! Your changes are included in the newest release (v0.16.0) which should be public in a couple of minutes 😊 I opened a new issue #43 to address the configuration reloading (seems that it was not properly implemented all along...) |
It would be great to be able to configure at the editor's settings.json the parameters that are passed to DafnyServer on verify.
Currently this is implemented on
server/backend/dafny/dafnyServer.js
as:I'm manually changing on the extension code the
args: []
, in my case to addargs: ['/vcsLoad:1']
, but it would be great if that was exported to be user-configurable.The text was updated successfully, but these errors were encountered: