summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/users_guide/ghci.xml33
1 files changed, 31 insertions, 2 deletions
diff --git a/docs/users_guide/ghci.xml b/docs/users_guide/ghci.xml
index e722739b50..0142e1eb8b 100644
--- a/docs/users_guide/ghci.xml
+++ b/docs/users_guide/ghci.xml
@@ -906,7 +906,7 @@ $ ghci -lm
<varlistentry>
<term>
- <literal>:breakpoint</literal> <replaceable>list|add|del|stop|step</replaceable> ...
+ <literal>:breakpoint</literal> <replaceable>list|add|continue|del|stop|step</replaceable> ...
<indexterm><primary><literal>:breakpoint</literal></primary></indexterm>
</term>
<listitem>
@@ -963,6 +963,15 @@ $ ghci -lm
<varlistentry>
<term>
+ <literal>:continue</literal>
+ <indexterm><primary><literal>:continue</literal></primary></indexterm>
+ </term>
+ <listitem> Shortcut to <literal>:breakpoint continue </literal>
+ </listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term>
<literal>:def</literal> <replaceable>name</replaceable> <replaceable>expr</replaceable>
<indexterm><primary><literal>:def</literal></primary></indexterm>
</term>
@@ -1556,7 +1565,7 @@ Prelude> :set -fno-glasgow-exts
in the context of the event, as well as evaluate arbitrary Haskell expressions in
a special interactive prompt. </para><para>
- When you are done you issue the <literal>:quit</literal>
+ When you are done you issue the <literal>:continue</literal>
command to leave the breakpoint and let the execution go on.
Note that not all the GHCi commands are supported in a breakpoint.
@@ -1706,6 +1715,26 @@ x :: Int
at line <literal>line</literal> in <literal>module</literal>, if any.
</para></listitem>
</varlistentry>
+
+<varlistentry>
+ <term>
+ <literal>:breakpoint continue</literal>
+ </term>
+ <listitem><para>
+ When at a breakpoint, continue execution up to the next breakpoint
+ or end of evaluation.
+ </para></listitem>
+</varlistentry>
+
+<varlistentry>
+ <term>
+ <literal>:continue</literal>
+ </term>
+ <listitem><para>
+ Shortcut for <literal>:breakpoint continue</literal>
+ </para></listitem>
+</varlistentry>
+
<varlistentry>
<term>
<literal>:breakpoint list</literal>