BreaksAt command: Difference between revisions

From m204wiki
Jump to navigation Jump to search
(Created page with "__TOC__ {| |width="50%"| '''Action:''' |width="50%"| <span class="f_Para">Sets breakpoints on lines that match a search string (see using_breakpoints.html#set_multiple_break...")
 
No edit summary
Line 9: Line 9:
<p class="syntax">breaksAt [''string'']</p>
<p class="syntax">breaksAt [''string'']</p>


<span class="f_Para">where </span><span class="f_EmphItal">string</span><span class="f_Para"> is the search string or</span><span class="f_ListNum1"> [[search_facility.html#search_top|regular expression.]]</span><span class="f_Para"> The default is to use the value in </span><span class="f_ListNum1">the [[review_common_buttons.html|Search text box.]]</span><span class="f_Para"> </span>
<span class="f_Para">where </span>'''''string'''''<span class="f_Para"> is the search string or</span><span class="f_ListNum1"> [[search_facility.html#search_top|regular expression.]]</span><span class="f_Para"> The default is to use the value in </span><span class="f_ListNum1">the [[review_common_buttons.html|Search text box.]]</span><span class="f_Para"> </span>


<span class="f_EmphRed">Note:</span><span class="f_Notes"> The search for the lines on which to set breakpoints begins from the current line, so you probably should precede </span><span class="f_Monospace">breaksAt</span><span class="f_Notes"> by a </span><span class="f_Monospace">[[top_cmd.html|top]]</span><span class="f_Notes"> command if used in a macro. </span>
'''Note:'''<span class="f_Notes"> The search for the lines on which to set breakpoints begins from the current line, so you probably should precede </span>'''''breaksAt'''''<span class="f_Notes"> by a </span><span class="f_Monospace">[[top_cmd.html|top]]</span><span class="f_Notes"> command if used in a macro. </span>


<span class="f_NoteContinue">In a macro (only), you must explicitly specify the string at which </span><span class="f_Monospace">breaksAt</span><span class="f_NoteContinue"> is to break. </span>
<span class="f_NoteContinue">In a macro (only), you must explicitly specify the string at which </span>'''''breaksAt'''''<span class="f_NoteContinue"> is to break. </span>
|-
|-
| '''Client menu:'''
| '''Client menu:'''

Revision as of 17:27, 17 May 2022

Action:

Sets breakpoints on lines that match a search string (see Setting multiple breakpoints at once).

Syntax:

breaksAt [string]

where string is the search string or regular expression. The default is to use the value in the Search text box.

Note: The search for the lines on which to set breakpoints begins from the current line, so you probably should precede breaksAt by a top command if used in a macro.

In a macro (only), you must explicitly specify the string at which breaksAt is to break.

Client menu: Breakpoints > Breaks At
Introduced: --