patch 9.1.1261: No test for 'pummaxwidth' non-truncated items Commit: https://github.com/vim/vim/commit/c6336acfe3e80904458d7ea735929b4c91346702 Author: zeertzjq <zeert...@outlook.com> Date: Sun Mar 30 15:07:35 2025 +0200
patch 9.1.1261: No test for 'pummaxwidth' non-truncated items Problem: No test for 'pummaxwidth' non-truncated items (after v9.1.1250) Solution: Add shorter items to Test_pum_maxwidth_multibyte() (zeertzjq). closes: #17007 Signed-off-by: zeertzjq <zeert...@outlook.com> Signed-off-by: Christian Brabandt <c...@256bit.org> diff --git a/src/testdir/dumps/Test_pum_maxwidth_05.dump b/src/testdir/dumps/Test_pum_maxwidth_05.dump index 0dd6a3937..b5765bc03 100644 --- a/src/testdir/dumps/Test_pum_maxwidth_05.dump +++ b/src/testdir/dumps/Test_pum_maxwidth_05.dump @@ -1,8 +1,8 @@ |1+0&#ffffff0|2|3|4|5|6|7|8|9|_|1|2|3|4|5|6|7|8|9|_|1|2|3|4|5|6|7|8|9|_> @44 |1+0#0000001#e0e0e08|2|3|4|5|6|7|8|9|_|1|2|3|4|5|6|7|8|9|_|1|2|3|4|5|6|7|8|9|_| | +0#4040ff13#ffffff0@43 |一*0#0000001#ffd7ff255|二|三|四|五|六|七|八|九|十| +&@10| +0#4040ff13#ffffff0@43 -|~| @73 -|~| @73 +|a+0#0000001#ffd7ff255|b|c|d|e|f|g|h|i|j| @20| +0#4040ff13#ffffff0@43 +|上*0#0000001#ffd7ff255|下|左|右| +&@22| +0#4040ff13#ffffff0@43 |~| @73 |~| @73 |~| @73 diff --git a/src/testdir/dumps/Test_pum_maxwidth_06.dump b/src/testdir/dumps/Test_pum_maxwidth_06.dump index 7321870eb..abc6bdf22 100644 --- a/src/testdir/dumps/Test_pum_maxwidth_06.dump +++ b/src/testdir/dumps/Test_pum_maxwidth_06.dump @@ -1,8 +1,8 @@ |1+0&#ffffff0|2|3|4|5|6|7|8|9|_|1|2|3|4|5|6|7|8|9|_|1|2|3|4|5|6|7|8|9|_> @44 |1+0#0000001#e0e0e08|2|3|4|5|6|7|.@2| +0#4040ff13#ffffff0@64 |一*0#0000001#ffd7ff255|二|三| +&|.@2| +0#4040ff13#ffffff0@64 -|~| @73 -|~| @73 +|a+0#0000001#ffd7ff255|b|c|d|e|f|g|h|i|j| +0#4040ff13#ffffff0@64 +|上*0#0000001#ffd7ff255|下|左|右| +&@1| +0#4040ff13#ffffff0@64 |~| @73 |~| @73 |~| @73 diff --git a/src/testdir/dumps/Test_pum_maxwidth_07.dump b/src/testdir/dumps/Test_pum_maxwidth_07.dump index 8e81d31b9..acdaa39db 100644 --- a/src/testdir/dumps/Test_pum_maxwidth_07.dump +++ b/src/testdir/dumps/Test_pum_maxwidth_07.dump @@ -1,8 +1,8 @@ | +0&#ffffff0@43> |_|9|8|7|6|5|4|3|2|1|_|9|8|7|6|5|4|3|2|1|_|9|8|7|6|5|4|3|2|1 | +0#4040ff13&@64|.+0#0000001#e0e0e08@2|7|6|5|4|3|2|1 | +0#4040ff13#ffffff0@64|.+0#0000001#ffd7ff255@2| |三*&|二|一 +| +0#4040ff13#ffffff0@64|j+0#0000001#ffd7ff255|i|h|g|f|e|d|c|b|a +| +0#4040ff13#ffffff0@64| +0#0000001#ffd7ff255@1|右*&|左|下|上 | +0#4040ff13#ffffff0@73|~ | @73|~ | @73|~ -| @73|~ -| @73|~ diff --git a/src/testdir/dumps/Test_pum_maxwidth_08.dump b/src/testdir/dumps/Test_pum_maxwidth_08.dump index 8681e5f69..3c6ae5124 100644 --- a/src/testdir/dumps/Test_pum_maxwidth_08.dump +++ b/src/testdir/dumps/Test_pum_maxwidth_08.dump @@ -1,8 +1,8 @@ |1+0&#ffffff0|2|3|4|5|6|7|8|9|_|1|2|3|4|5|6|7|8|9|_|1|2|3|4|5|6|7|8|9|_> @44 |1+0#0000001#e0e0e08|2| +0#4040ff13#ffffff0@72 |一*0#0000001#ffd7ff255| +0#4040ff13#ffffff0@72 -|~| @73 -|~| @73 +|a+0#0000001#ffd7ff255|b| +0#4040ff13#ffffff0@72 +|上*0#0000001#ffd7ff255| +0#4040ff13#ffffff0@72 |~| @73 |~| @73 |~| @73 diff --git a/src/testdir/test_popup.vim b/src/testdir/test_popup.vim index e95465c2d..e216a6d58 100644 --- a/src/testdir/test_popup.vim +++ b/src/testdir/test_popup.vim @@ -2036,6 +2036,8 @@ func Test_pum_maxwidth_multibyte() return [ \ #{word: "123456789_123456789_123456789_"}, \ #{word: "一二三四五六七八九十"}, + \ #{word: "abcdefghij"}, + \ #{word: "上下左右"}, \ ] endfunc set omnifunc=Omni_test diff --git a/src/version.c b/src/version.c index d0fdb6528..4be2967b6 100644 --- a/src/version.c +++ b/src/version.c @@ -704,6 +704,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1261, /**/ 1260, /**/ -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to vim_dev+unsubscr...@googlegroups.com. To view this discussion visit https://groups.google.com/d/msgid/vim_dev/E1tysRs-007OoI-0j%40256bit.org.