This repository was archived by the owner on Feb 26, 2021. It is now read-only.

Description
Related with #119 and #122.
I noticed that when I try to get the Scope Info of the constructor _,_, the agda-mode replies that , is not in scope. Example:
pattern []' = (true , refl)
It works only when the operator appears in the code with the underscores:
pattern []' = (_,_ true refl)
In more complex fragments of code, this change is sometimes not so easy to perform.