mirror of
https://github.com/vim/vim.git
synced 2026-03-19 11:23:57 +02:00
14 lines
125 B
VimL
14 lines
125 B
VimL
|
|
" Vim :debug command
|
||
|
|
|
||
|
|
|
||
|
|
debug echo "..."
|
||
|
|
|
||
|
|
function Foo()
|
||
|
|
debug echo "..."
|
||
|
|
endfunction
|
||
|
|
|
||
|
|
def Bar()
|
||
|
|
debug echo "..."
|
||
|
|
enddef
|
||
|
|
|