Update post: Integrated debugging in Vim

Author Mitja Felicijan <mitja.felicijan@gmail.com> 2026-01-11 04:08:59 +0100
Committer Mitja Felicijan <mitja.felicijan@gmail.com> 2026-01-11 04:08:59 +0100
Commit 2155dd25e90a2a6b9a801ed7352f4a4123e54cf0 (patch)
-rw-r--r-- content/posts/2026-01-09-vim.md 6
1 files changed, 3 insertions, 3 deletions
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
  
...