2025-06-11 21:16:14 +02:00
|
|
|
" Vim :delfunction command
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
delfunction Foo
|
|
|
|
|
delfunction <SID>Foo
|
|
|
|
|
delfunction foo.bar
|
|
|
|
|
delfunction g:foo.bar
|
|
|
|
|
delfunction s:foo.bar
|
|
|
|
|
delfunction foo#bar
|
|
|
|
|
delfunction g:foo#bar
|
|
|
|
|
delfunction foo#bar.baz
|
|
|
|
|
delfunction g:foo#bar.baz
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
delfunction! Foo
|
|
|
|
|
delfunction! <SID>Foo
|
|
|
|
|
delfunction! foo.bar
|
|
|
|
|
delfunction! g:foo.bar
|
|
|
|
|
delfunction! s:foo.bar
|
|
|
|
|
delfunction! foo#bar
|
|
|
|
|
delfunction! g:foo#bar
|
|
|
|
|
delfunction! foo#bar.baz
|
|
|
|
|
delfunction! g:foo#bar.baz
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
delfunction Foo | echo "Foo"
|
|
|
|
|
delfunction Foo " comment
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
" Issue https://github.com/vim/vim/pull/17420#issuecomment-2927798687
|
|
|
|
|
" (arg named /fu%\[nction]/)
|
2025-08-06 12:50:30 +02:00
|
|
|
|
2025-06-11 21:16:14 +02:00
|
|
|
silent! delfunc! func
|
|
|
|
|
|