You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When stepping through the following file (using Linux and Coq version 8.6), the string "<W> Grammar extension: in [constr:operconstr] some rule has been masked" appears on the screen at an unpredictable location:
Inductive natprod : Type := | pair : nat -> nat -> natprod. Notation "( x , y )" := (pair x y).
This string doesn't move when scrolling through this file, so it doesn't seem like Vim is aware of its existence.
Furthermore, this doesn't happen when I add stderr = subprocess.PIPE to the coqtop = subprocess.Popen(...) call in coqtop.py. So I think this message is from the stderr output of Coqtop.
I'll make a pull request to suppress this message shortly; any suggestions on how to use this message in a helpful way are welcome!
The text was updated successfully, but these errors were encountered:
This should fix issue the-lambda-church#61.
I tried doing what the code for Windows NT did and redirect the stderr
output to stdout, but that freezes my Vim process for some reason. So I
just send it to a pipe that is never read from.
This should fix issue the-lambda-church#61.
I tried doing what the code for Windows NT did and redirect the stderr
output to stdout, but that freezes my Vim process for some reason. So I
just send it to a pipe that is never read from.
When stepping through the following file (using Linux and Coq version 8.6), the string "
<W> Grammar extension: in [constr:operconstr] some rule has been masked
" appears on the screen at an unpredictable location:This string doesn't move when scrolling through this file, so it doesn't seem like Vim is aware of its existence.
The appearing string doesn't seem to be in the coquille files, it looks like it's the output of Coqtop (see for example some of the output here: http://www.lix.polytechnique.fr/coq/pylons/logs/view/QuicksortComplexity/5528711275707690290).
Furthermore, this doesn't happen when I add
stderr = subprocess.PIPE
to thecoqtop = subprocess.Popen(...)
call incoqtop.py
. So I think this message is from thestderr
output of Coqtop.I'll make a pull request to suppress this message shortly; any suggestions on how to use this message in a helpful way are welcome!
The text was updated successfully, but these errors were encountered: