view src/testdir/sautest/autoload/foo.vim @ 27279:6e1b0c4ab668 v8.2.4168

patch 8.2.4168: disallowing empty function name breaks existing plugins Commit: https://github.com/vim/vim/commit/e6a4200ff47708febcd7cb2b8c3dd3801a975d43 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jan 21 10:32:58 2022 +0000 patch 8.2.4168: disallowing empty function name breaks existing plugins Problem: Disallowing empty function name breaks existing plugins. Solution: Allow empty function name in legacy script.
author Bram Moolenaar <Bram@vim.org>
date Fri, 21 Jan 2022 11:45:03 +0100
parents 9ffec4eb8d33
children
line wrap: on
line source

let g:loaded_foo_vim += 1

let foo#bar = {}

func foo#bar.echo()
  let g:called_foo_bar_echo += 1
endfunc

func foo#addFoo(head)
  return a:head .. 'foo'
endfunc

func foo#()
  return 'empty'
endfunc