From: zeertzjq Date: Fri, 23 May 2025 15:16:17 +0000 (+0200) Subject: patch 9.1.1405: tests: no test for mapping with special keys in session file X-Git-Tag: v9.1.1405^0 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9ff1e598e8ee373b5623219ed38ad49470ec7938;p=thirdparty%2Fvim.git patch 9.1.1405: tests: no test for mapping with special keys in session file Problem: tests: no test for mapping with special keys in session file. Solution: Add a special keys to an existing test. Also test with UTF-8 characters containing 0x80 or 0x9b bytes (zeertzjq). closes: #17360 Signed-off-by: zeertzjq Signed-off-by: Christian Brabandt --- diff --git a/src/testdir/test_mksession.vim b/src/testdir/test_mksession.vim index 72a9376c3e..bbb42f94ce 100644 --- a/src/testdir/test_mksession.vim +++ b/src/testdir/test_mksession.vim @@ -1153,10 +1153,10 @@ endfunc func Test_mkvimrc() let entries = [ \ ['', 'nothing', ''], - \ ['n', 'normal', 'NORMAL'], - \ ['v', 'visual', 'VISUAL'], - \ ['s', 'select', 'SELECT'], - \ ['x', 'visualonly', 'VISUALONLY'], + \ ['n', 'normal', 'NORMAL'], + \ ['v', 'visual', 'VISUAL'], + \ ['s', 'select', 'SELECT'], + \ ['x', 'visualonly', 'VISUALONLY'], \ ['o', 'operator', 'OPERATOR'], \ ['i', 'insert', 'INSERT'], \ ['l', 'lang', 'LANG'], diff --git a/src/testdir/test_mksession_utf8.vim b/src/testdir/test_mksession_utf8.vim index 36cb38bea7..387d128f6e 100644 --- a/src/testdir/test_mksession_utf8.vim +++ b/src/testdir/test_mksession_utf8.vim @@ -103,12 +103,19 @@ func Test_mksession_utf8() endfunc func Test_session_multibyte_mappings() - - " some characters readily available on european keyboards + " some characters readily available on european keyboards, + " as well as characters containing 0x80 or 0x9b bytes let entries = [ + \ ['n', 'ç', 'ç'], + \ ['n', 'º', 'º'], + \ ['n', '¡', '¡'], \ ['n', '', ''], \ ['n', '', ''], \ ['n', '', ''], + \ ['n', '…', 'ě'], + \ ['n', 'ě', '…'], + \ ['n', '', ''], + \ ['n', '', ''], \ ] for entry in entries exe entry[0] .. 'map ' .. entry[1] .. ' ' .. entry[2] diff --git a/src/version.c b/src/version.c index 9cecc0be8b..c45c65e7b7 100644 --- a/src/version.c +++ b/src/version.c @@ -709,6 +709,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1405, /**/ 1404, /**/