|
diff --git a/content/posts/2026-01-09-vim.md b/content/posts/2026-01-09-vim.md
|
| ... |
| 141 |
call TermDebugSendCommand(printf('set env %s %s', k, v)) |
141 |
call TermDebugSendCommand(printf('set env %s %s', k, v)) |
| 142 |
endfor |
142 |
endfor |
| 143 |
|
143 |
|
| 144 |
call TermDebugSendCommand('directory ' . getcwd()) |
|
|
| 145 |
call TermDebugSendCommand('break main') |
144 |
call TermDebugSendCommand('break main') |
| 146 |
call TermDebugSendCommand('run') |
145 |
call TermDebugSendCommand('run') |
| 147 |
endfunction |
146 |
endfunction |
| ... |
| 176 |
``` |
175 |
``` |
| 177 |
|
176 |
|
| 178 |
> **Note**: If any errors are found during the compilation mode the Quickfix |
177 |
> **Note**: If any errors are found during the compilation mode the Quickfix |
| 179 |
> list will be populated and opened. You could CtrlP Quickfix for this as well, |
178 |
> list will be populated and opened. You could use CtrlP Quickfix with |
| 180 |
> I just want to stick to what Vim supports natively. |
179 |
> `:CtrlPQuickfix` instead of `:copen` for this as well, I just want to stick |
|
|
180 |
> to what Vim supports natively. |
| 181 |
|
181 |
|
| 182 |
Lets check these keybindings. |
182 |
Lets check these keybindings. |
| 183 |
|
183 |
|
| ... |