mirror of
https://github.com/neovim/neovim.git
synced 2025-12-03 07:23:05 +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()
|