-
Notifications
You must be signed in to change notification settings - Fork 1
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
Command line arguments to Coqtop #45
Comments
If that's your use case, then you should probably use a |
My objective is actually to launch Coq from another tool (Why3): we already support editors such as coqide and proofgeneral. In this context, it would have been more convenient to use commandline arguments (to be fair, there are workarounds for my usecase). I will try to investigate the That said, I am still interested to know if this kind of feature is on the roadmap for vscoq ? |
You can edit the As far as I know, vscode does not allow to pass temporary settings via the command line that starts the IDE itself. |
Hello,
Is there a way to pass commandline arguments to Coqtop with Vscoq ? My use case would be to call something like:
code --coqtop-arguments="-R my_lib name_my_lib" my_file.v
I have found the settings option
coqtop.args
: is there a way to change the settings on the commandline or with environment variables ? Such as:code --vscoq.settings="coqtop.arguments=[-R ...]"
I have also tried looking at the COQPATH environment variable but it seems that it is not expressive enough for
-R
.The text was updated successfully, but these errors were encountered: