Questions tagged [vscoq]
2 questions
0
votes
1 answer
How does one automatically lint Coq files in vscode?
I installed a coq linter in vscode but I get this issue:
Cannot lint the coq file.
I am using this extension.
Why is it not linting my file?
cross: https://github.com/fpoli/vscode-coq-linter/issues/1

Charlie Parker
- 5,884
- 57
- 198
- 323
0
votes
1 answer
How to activate the Coq messages in vscode/vscoq like in the CoqIde/jscoq?
I am expecting something in my messages bar but I don't see it
Example script:
Fixpoint add_left (n m : nat) : nat :=
match n with
| O => m
| S p => S (add_left p m)
end.
Lemma demo_1 :
forall (n : nat),
add_left n O = n.
Proof.
…

Charlie Parker
- 5,884
- 57
- 198
- 323