mirror of
https://github.com/neovim/neovim.git
synced 2025-09-23 19:48:32 +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()
|