Registered User (Created page with "<noinclude> ==Usage== The GDB$ template is used '''to prefix a command that must be executed on GDB, with a GDB-specific prompt'''. Usage: <nowiki>{{</now...") |
Registered User (Merge articles) |
||
Line 1: | Line 1: | ||
<noinclude> | <noinclude> | ||
==Usage== | ==Usage== | ||
The [[Template:GDB$|GDB$]] template is used '''to prefix a command that must be executed on GDB, with a GDB-specific prompt'''. | The [[Template:GDB$|GDB$]] template is used '''to prefix a command that must be executed on GDB, with a GDB-specific prompt'''.<br> | ||
Thanks to the <code>gdb-prompt</code> class defined in [[MediaWiki:Common.css]], a double (or triple) click to select the command doesn't select the prompt. | |||
Usage: <nowiki>{{</nowiki>GDB$}} | Usage: <nowiki>{{</nowiki>GDB$}} | ||
Line 9: | Line 10: | ||
! You type !! You get | ! You type !! You get | ||
|- | |- | ||
| <code> | | <code>info break</code> command executed on GDB | ||
<pre style="white-space: pre-wrap;"> | <pre style="white-space: pre-wrap;"> | ||
{{GDB$}} | {{GDB$}} show listsize<br> | ||
Number of source lines gdb will list by default is 10. | |||
</pre> | </pre> | ||
| | | | ||
{{GDB$}} | {{GDB$}} show listsize<br> | ||
Number of source lines gdb will list by default is 10. | |||
|} | |} | ||
==More examples== | |||
{| class="st-table" | |||
! You type !! You get | |||
|- | |||
| 2 commands executed on GDB and preformatted text block (space at the beginning of each line) | |||
<pre style="white-space: pre-wrap;"> | |||
{{GDB$}} show listsize | |||
Number of source lines gdb will list by default is 10. | |||
{{GDB$}} continue | |||
</pre> | |||
| | |||
{{GDB$}} show listsize | |||
Number of source lines gdb will list by default is 10. | |||
{{GDB$}} continue | |||
|- | |||
| Command executed on GDB and preformatted text block (space at the beginning of each line) | |||
<pre style="white-space: pre-wrap;"> | |||
{{GDB$}} show listsize | |||
Number of source lines gdb will list by default is 10. | |||
</pre> | |||
| | |||
{{GDB$}} show listsize | |||
Number of source lines gdb will list by default is 10. | |||
|- | |||
| Long command executed on GDB and preformatted text block (space at the beginning of each line) | |||
<pre style="white-space: pre-wrap;"> | |||
{{GDB$}} this is a so long command executed on GDB that a horizontal scrolling bar is needed | |||
</pre> | |||
| style="max-width:30em;" | | |||
{{GDB$}} this is a so long command executed on GDB that a horizontal scrolling bar is needed | |||
|- | |||
| Template used within another public message box template | |||
<pre style="white-space: pre-wrap;"> | |||
{{Info | | |||
Message before the command | |||
{{GDB$}} show listsize | |||
Number of source lines gdb will list by default is 10. | |||
Message after the command | |||
}} | |||
</pre> | |||
| | |||
{{Info | | |||
Message before the command | |||
{{GDB$}} show listsize | |||
Number of source lines gdb will list by default is 10. | |||
Message after the command | |||
}} | |||
|- | |||
| Template used within another protected message box template | |||
<pre style="white-space: pre-wrap;"> | |||
{{InternalInfo | | |||
Message before the command | |||
{{GDB$}} show listsize | |||
Number of source lines gdb will list by default is 10. | |||
Message after the command | |||
}} | |||
</pre> | |||
| | |||
{{InternalInfo | | |||
Message before the command | |||
{{GDB$}} show listsize | |||
Number of source lines gdb will list by default is 10. | |||
Message after the command | |||
}} | |||
|} | |||
==Maintenance== | |||
This template is a template common to all ST wikis. <br> | |||
Modifications must be done into the [[stwikimodel:Template:GDB$|WikiModel]]. They must be reviewed by all ST wikis maintainers.<br> | |||
When approved, the template can be pushed/merged towards all ST wikis. | |||
==Code== | ==Code== | ||
</noinclude> | </noinclude><span class{{=}}"gdb-prompt"></span> |
Latest revision as of 09:42, 24 May 2022
1. Usage[edit source]
The GDB$ template is used to prefix a command that must be executed on GDB, with a GDB-specific prompt.
Thanks to the gdb-prompt
class defined in MediaWiki:Common.css, a double (or triple) click to select the command doesn't select the prompt.
GDB$}}Usage: {{
2. Basic examples[edit source]
You type | You get |
---|---|
info break command executed on GDB
GDB$}} show listsize<br> Number of source lines gdb will list by default is 10.{{ |
show listsize |
3. More examples[edit source]
You type | You get |
---|---|
2 commands executed on GDB and preformatted text block (space at the beginning of each line)
GDB$}} show listsize Number of source lines gdb will list by default is 10. {{GDB$}} continue{{ |
show listsize
Number of source lines gdb will list by default is 10.
continue
|
Command executed on GDB and preformatted text block (space at the beginning of each line)
GDB$}} show listsize Number of source lines gdb will list by default is 10.{{ |
show listsize
Number of source lines gdb will list by default is 10.
|
Long command executed on GDB and preformatted text block (space at the beginning of each line)
GDB$}} this is a so long command executed on GDB that a horizontal scrolling bar is needed{{ |
GDB that a horizontal scrolling bar is neededthis is a so long command executed on |
Template used within another public message box template
GDB$}} show listsize Number of source lines gdb will list by default is 10. Message after the command }}{{Info | Message before the command {{ |
|
Template used within another protected message box template
GDB$}} show listsize Number of source lines gdb will list by default is 10. Message after the command }}{{InternalInfo | Message before the command {{ |
4. Maintenance[edit source]
This template is a template common to all ST wikis.
Modifications must be done into the WikiModel. They must be reviewed by all ST wikis maintainers.
When approved, the template can be pushed/merged towards all ST wikis.
5. Code[edit source]