aboutsummaryrefslogtreecommitdiff
path: root/test.vim
diff options
context:
space:
mode:
authorMichael Ennen <mike.ennen@gmail.com>2016-12-14 17:33:20 -0700
committerMichael Ennen <mike.ennen@gmail.com>2017-02-14 17:38:16 -0700
commita0ce66371096db21f341f061df8c1b7b4d9e38fe (patch)
treef21f273cded7f28c2eca3009f397eecc091accdc /test.vim
parentfc46efd3f2d95920bf50832848515b14b12c0723 (diff)
downloadrneovim-a0ce66371096db21f341f061df8c1b7b4d9e38fe.tar.gz
rneovim-a0ce66371096db21f341f061df8c1b7b4d9e38fe.tar.bz2
rneovim-a0ce66371096db21f341f061df8c1b7b4d9e38fe.zip
vim-patch:7.4.2076
Problem: Syntax error when dict has '>' key. Solution: Check for endchar. (Ken Takata) https://github.com/vim/vim/commit/4f0383bc3fe5af0229fb66b53fe94329af783eff
Diffstat (limited to 'test.vim')
-rw-r--r--test.vim7
1 files changed, 7 insertions, 0 deletions
diff --git a/test.vim b/test.vim
new file mode 100644
index 0000000000..f586b0042b
--- /dev/null
+++ b/test.vim
@@ -0,0 +1,7 @@
+ func! Afoo()
+ let x = 14
+ func! s:Abar()
+ return x
+ endfunc
+ endfunc
+ call Afoo()