We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef4fdcf commit 83c68a7Copy full SHA for 83c68a7
ftplugin/vim.vim
@@ -1,5 +1,5 @@
1
function! s:DebugStringFunBase(desc, var)
2
- let l:debug_str = "echo '" . a:desc . "' . string(" . a:var . ")"
+ let l:debug_str = "echom '" . a:desc . "' . string(" . a:var . ")"
3
return l:debug_str
4
endfunc
5
test/ft/a.vim
@@ -1,2 +1,2 @@
-echo '[[Vader-workbench]:$1$] DEBUGGING STRING ==> ' . string($2$)
-echo 'a**2 + b**2: ' . string(a**2 + b**2)
+echom '[[Vader-workbench]:$1$] DEBUGGING STRING ==> ' . string($2$)
+echom 'a**2 + b**2: ' . string(a**2 + b**2)
0 commit comments