mirror of
https://github.com/neovim/neovim.git
synced 2025-10-02 16:08:36 +00:00

Problem: Syntax error when dict has '>' key.
Solution: Check for endchar. (Ken Takata)
4f0383bc3f
8 lines
100 B
VimL
8 lines
100 B
VimL
func! Afoo()
|
|
let x = 14
|
|
func! s:Abar()
|
|
return x
|
|
endfunc
|
|
endfunc
|
|
call Afoo()
|