aboutsummaryrefslogtreecommitdiff
path: root/doc/refman/RefMan-pro.tex
diff options
context:
space:
mode:
authorMaxime Dénès2017-06-16 08:42:57 +0200
committerMaxime Dénès2017-06-16 08:42:57 +0200
commitc22fe8bb7e0fedd8b3ced088832c13b5e55e9fc2 (patch)
tree42de8d4e25a46ef27fa105652d8cae5b5bcb60c1 /doc/refman/RefMan-pro.tex
parentf8e3a9ac43ec50a5810cd7835fa562918db0bdcb (diff)
parent5636fc49828f6007a8b756cd0517280a73147da6 (diff)
Merge PR#767: Document named evars (including Show ident)
Diffstat (limited to 'doc/refman/RefMan-pro.tex')
-rw-r--r--doc/refman/RefMan-pro.tex18
1 files changed, 18 insertions, 0 deletions
diff --git a/doc/refman/RefMan-pro.tex b/doc/refman/RefMan-pro.tex
index 4c333379bd..9c211b00f3 100644
--- a/doc/refman/RefMan-pro.tex
+++ b/doc/refman/RefMan-pro.tex
@@ -434,6 +434,24 @@ This command displays the current goals.
\item \errindex{No focused proof}
\end{ErrMsgs}
+\item {\tt Show {\ident}.}\\
+ Displays the named goal {\ident}.
+ This is useful in particular to display a shelved goal but only works
+ if the corresponding existential variable has been named by the user
+ (see~\ref{ExistentialVariables}) as in the following example.
+
+\begin{coq_eval}
+Reset Initial.
+\end{coq_eval}
+
+\begin{coq_example*}
+Goal exists n, n = 0.
+ eexists ?[n].
+\end{coq_example*}
+\begin{coq_example}
+ Show n.
+\end{coq_example}
+
\item {\tt Show Script.}\comindex{Show Script}\\
Displays the whole list of tactics applied from the beginning
of the current proof.