| | 11 | |
| | 12 | === Command summary === |
| | 13 | |
| | 14 | Parameters to commands are indicated in angular brackets `<...>`, optional parameters are followed by a question mark. Everything else is literal text, as you would type it at the prompt. |
| | 15 | |
| | 16 | Setting breakpoints: |
| | 17 | {{{ |
| | 18 | :break <module>? <line_number> |
| | 19 | :break <module>? <line_number> <column_number> |
| | 20 | :break <module>? <function_name> |
| | 21 | }}} |
| | 22 | Listing breakpoints: |
| | 23 | {{{ |
| | 24 | :show breaks |
| | 25 | }}} |
| | 26 | Deleting breakpoints: |
| | 27 | {{{ |
| | 28 | :delete <break_id> ... <break_id> |
| | 29 | :delete * |
| | 30 | }}} |
| | 31 | Single stepping: |
| | 32 | {{{ |
| | 33 | :step |
| | 34 | :step <expression> |
| | 35 | }}} |
| | 36 | Continuting execution from a breakpoint: |
| | 37 | {{{ |
| | 38 | :continue |
| | 39 | }}} |