aboutsummaryrefslogtreecommitdiff
path: root/content/posts
diff options
context:
space:
mode:
Diffstat (limited to 'content/posts')
-rw-r--r--content/posts/2026-01-09-vim.md6
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
index 74e0b15..58c40f3 100644
--- a/content/posts/2026-01-09-vim.md
+++ b/content/posts/2026-01-09-vim.md
@@ -141,7 +141,6 @@ function! LocalDebugMain() abort
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')
147endfunction 146endfunction
@@ -176,8 +175,9 @@ 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
182Lets check these keybindings. 182Lets check these keybindings.
183 183