Remove bold formatting from key actions in the README

Author Mitja Felicijan <mitja.felicijan@gmail.com> 2026-01-17 02:47:26 +0100
Committer Mitja Felicijan <mitja.felicijan@gmail.com> 2026-01-17 02:47:26 +0100
Commit 18219af3fc23e720a3d7d207ac3a183bd06ddf45 (patch)
-rw-r--r-- README.md 28
1 files changed, 14 insertions, 14 deletions
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
  
...