|
diff --git a/README.md b/README.md
|
| ... |
| 52 |
|
52 |
|
| 53 |
| Key | Action | |
53 |
| Key | Action | |
| 54 |
| :----------- | :---------------------------------------------------------------- | |
54 |
| :----------- | :---------------------------------------------------------------- | |
| 55 |
| `r` | **Run** the program (auto-breaks on `main` if no breakpoints set) | |
55 |
| `r` | Run the program (auto-breaks on `main` if no breakpoints set) | |
| 56 |
| `b` | Add a **breakpoint** (enter name/file:line) | |
56 |
| `b` | Add a breakpoint (enter name/file:line) | |
| 57 |
| `p` | **Print** variable value | |
57 |
| `p` | Print variable value | |
| 58 |
| `n` | **Step over** | |
58 |
| `n` | Step over | |
| 59 |
| `s` | **Step into** | |
59 |
| `s` | Step into | |
| 60 |
| `o` | **Step out** | |
60 |
| `o` | Step out | |
| 61 |
| `c` | **Continue** execution | |
61 |
| `c` | Continue execution | |
| 62 |
| `w` | **Watch** expression | |
62 |
| `w` | Watch expression | |
| 63 |
| `h` | **Toggle help view** | |
63 |
| `h` | Toggle help view | |
| 64 |
| `Ctrl+Left` | **Increases sidebar width** | |
64 |
| `Ctrl+Left` | Increases sidebar width | |
| 65 |
| `Ctrl+Right` | **Reduces sidebar width** | |
65 |
| `Ctrl+Right` | Reduces sidebar width | |
| 66 |
| `Ctrl+Up` | **Increases log height** | |
66 |
| `Ctrl+Up` | Increases log height | |
| 67 |
| `Ctrl+Down` | **Reduces log height** | |
67 |
| `Ctrl+Down` | Reduces log height | |
| 68 |
| `q` | **Quit** debugger | |
68 |
| `q` | Quit debugger | |
| 69 |
|
69 |
|
| 70 |
### Input Mode |
70 |
### Input Mode |
| 71 |
|
71 |
|
| ... |