mirror of
https://github.com/vim/vim.git
synced 2025-12-23 12:15:17 +01:00
Match full :debug, :breakadd, :breakdel and :breaklist commands. closes: #18748 Signed-off-by: Doug Kearns <dougkearns@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
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
|
|
|