diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2014-12-19 01:35:42 -0500 |
|---|---|---|
| committer | Justin M. Keyes <justinkz@gmail.com> | 2014-12-19 01:35:42 -0500 |
| commit | 5df8bf077bc69eab4e660dc09026878adcf54bb8 (patch) | |
| tree | 9a810ddb2c0508bf6ba9033f3d8087eb9f148b59 /src/nvim/testdir | |
| parent | e47105c47dd8436149ad38cbea0587a331490db4 (diff) | |
| parent | 3f7b8199df130145143016536e3cc46fd8ef65ff (diff) | |
| download | rneovim-5df8bf077bc69eab4e660dc09026878adcf54bb8.tar.gz rneovim-5df8bf077bc69eab4e660dc09026878adcf54bb8.tar.bz2 rneovim-5df8bf077bc69eab4e660dc09026878adcf54bb8.zip | |
Merge pull request #1704 from fwalch/vim-7.4.434
vim-patch:7.4.434, vim-patch:7.4.442
Diffstat (limited to 'src/nvim/testdir')
| -rw-r--r-- | src/nvim/testdir/test91.in | 1 | ||||
| -rw-r--r-- | src/nvim/testdir/test91.ok | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/nvim/testdir/test91.in b/src/nvim/testdir/test91.in index e900a522df..b66776b1e4 100644 --- a/src/nvim/testdir/test91.in +++ b/src/nvim/testdir/test91.in @@ -55,6 +55,7 @@ STARTTEST :tabnew :tabnew :let t:var_list = [1, 2, 3] +:let t:other = 777 :let def_list = [4, 5, 6, 7] :tabrewind :$put =string(gettabvar(3, 'var_list')) diff --git a/src/nvim/testdir/test91.ok b/src/nvim/testdir/test91.ok index 22e1572209..809952b69d 100644 --- a/src/nvim/testdir/test91.ok +++ b/src/nvim/testdir/test91.ok @@ -26,8 +26,8 @@ iso-8859-2 0 [1, 2, 3] [1, 2, 3] -'' -[4, 5, 6, 7] +{'var_list': [1, 2, 3], 'other': 777} +{'var_list': [1, 2, 3], 'other': 777} [4, 5, 6, 7] '' [4, 5, 6, 7] |