diff options
author | zeertzjq <zeertzjq@outlook.com> | 2024-04-15 07:11:39 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-15 07:11:39 +0800 |
commit | 43f8d7e3ef2db733f01f2d4c03214cd90c5a09be (patch) | |
tree | 002e8a305a2217ce1b6f7f7ab7fef548fcd6b8b7 /test/functional | |
parent | 7180ef690180cf92d1d49811820c46dd60e4d1c6 (diff) | |
download | rneovim-43f8d7e3ef2db733f01f2d4c03214cd90c5a09be.tar.gz rneovim-43f8d7e3ef2db733f01f2d4c03214cd90c5a09be.tar.bz2 rneovim-43f8d7e3ef2db733f01f2d4c03214cd90c5a09be.zip |
vim-patch:9.1.0329: String interpolation fails for Dict type (#28335)
Problem: String interpolation fails for Dict type
Solution: Support Dict data type properly, also support :put =Dict
(without having to convert it to string() first)
(Yegappan Lakshmanan)
fixes: vim/vim#14529
closes: vim/vim#14541
https://github.com/vim/vim/commit/f01493c55062c01b1cdf9b1e946577f4d1bdddf3
Co-authored-by: Yegappan Lakshmanan <yegappan@yahoo.com>
Diffstat (limited to 'test/functional')
-rw-r--r-- | test/functional/editor/mode_insert_spec.lua | 43 | ||||
-rw-r--r-- | test/functional/legacy/edit_spec.lua | 10 |
2 files changed, 22 insertions, 31 deletions
diff --git a/test/functional/editor/mode_insert_spec.lua b/test/functional/editor/mode_insert_spec.lua index aad92cb36a..6d075cdf36 100644 --- a/test/functional/editor/mode_insert_spec.lua +++ b/test/functional/editor/mode_insert_spec.lua @@ -52,43 +52,34 @@ describe('insert-mode', function() end) it('double quote is removed after hit-enter prompt #22609', function() - local screen = Screen.new(60, 6) - screen:set_default_attr_ids({ - [0] = { bold = true, foreground = Screen.colors.Blue }, -- NonText - [1] = { foreground = Screen.colors.Blue }, -- SpecialKey - [2] = { foreground = Screen.colors.SlateBlue }, - [3] = { bold = true }, -- ModeMsg - [4] = { reverse = true, bold = true }, -- MsgSeparator - [5] = { background = Screen.colors.Red, foreground = Screen.colors.White }, -- ErrorMsg - [6] = { foreground = Screen.colors.SeaGreen, bold = true }, -- MoreMsg - }) + local screen = Screen.new(50, 6) screen:attach() feed('i<C-R>') screen:expect([[ - {1:^"} | - {0:~ }|*4 - {3:-- INSERT --} | + {18:^"} | + {1:~ }|*4 + {5:-- INSERT --} | ]]) - feed('={}') + feed("=function('add')") screen:expect([[ - {1:"} | - {0:~ }|*4 - ={2:{}}^ | + {18:"} | + {1:~ }|*4 + ={25:function}{16:(}{26:'add'}{16:)}^ | ]]) feed('<CR>') screen:expect([[ - {1:"} | - {0:~ }| - {4: }| - ={2:{}} | - {5:E731: Using a Dictionary as a String} | - {6:Press ENTER or type command to continue}^ | + {18:"} | + {1:~ }| + {3: }| + ={25:function}{16:(}{26:'add'}{16:)} | + {9:E729: Using a Funcref as a String} | + {6:Press ENTER or type command to continue}^ | ]]) feed('<CR>') screen:expect([[ - ^ | - {0:~ }|*4 - {3:-- INSERT --} | + ^ | + {1:~ }|*4 + {5:-- INSERT --} | ]]) end) end) diff --git a/test/functional/legacy/edit_spec.lua b/test/functional/legacy/edit_spec.lua index c79213656f..0def49b85d 100644 --- a/test/functional/legacy/edit_spec.lua +++ b/test/functional/legacy/edit_spec.lua @@ -56,20 +56,20 @@ describe('edit', function() {1:~ }|*4 {5:-- INSERT --} | ]]) - feed('={}') + feed('=0z') screen:expect([[ {18:"} | {1:~ }|*4 - ={16:{}}^ | + ={26:0}{9:z}^ | ]]) - -- trying to insert a dictionary produces an error + -- trying to insert a blob produces an error feed('<CR>') screen:expect([[ {18:"} | {1:~ }| {3: }| - ={16:{}} | - {9:E731: Using a Dictionary as a String} | + ={26:0}{9:z} | + {9:E976: Using a Blob as a String} | {6:Press ENTER or type command to continue}^ | ]]) |