According to the Coq refman one can use -set
syntax in _CoqProject
. But the given example -arg "-set 'Default Goal Selector=!'"
leads to an error message in (my) Proof General:
Don't know what to do with Goal Selector=!'
See -help for the list of supported options
What works for me is -arg "-set \"Default Goal Selector=!\""
, but then make
breaks. Does anybody have experience with using quoted arguments in a _CoqProject
files working both in Proof General and with the coqc
commands of the generated Makefile
?
Would -arg -set -arg "Default Goal Selector=!"
work?
at least with -w
I use -arg -w -arg -notation-overridden
so I wondered about the same
Don't know what to do with Goal Selector=!
See -help for the list of supported options
:(
okay, more quoting needed then on this one...
(without the nested quoting, it might work better?)
Ha, I think -arg "-set" -arg "'Default Proof Using = Type'"
works
hope that "-set"
= -set
?
Yes, indeed
Hi all!
Not sure if it impacts what you said (didn't check in detail), but FYI you might be interested in having a look at this recently-merged PR in proof-general . master
:
BTW @Yannick Forster, did you find a solution to your use case?
Yes, using -arg "-set" -arg "'Default Proof Using = Type'"
worked
I think that's incompatible with coqide ;)
Last updated: Oct 13 2024 at 01:02 UTC