comparison src/testdir/test_cmdline.vim @ 16499:0f0de1fb70a2 v8.1.1253

patch 8.1.1253: mapping completion test fails commit https://github.com/vim/vim/commit/92b9e60cb5775ebe8949b4e112feb9f8565441e0 Author: Bram Moolenaar <Bram@vim.org> Date: Fri May 3 16:49:25 2019 +0200 patch 8.1.1253: mapping completion test fails Problem: Mapping completion test fails. Solution: Fix expected output.
author Bram Moolenaar <Bram@vim.org>
date Fri, 03 May 2019 17:00:06 +0200
parents ac4e38fbae9d
children 5273b506b050
comparison
equal deleted inserted replaced
16498:675bf614934c 16499:0f0de1fb70a2
89 call feedkeys(":map ,\<Tab>\<Tab>\<Home>\"\<CR>", 'xt') 89 call feedkeys(":map ,\<Tab>\<Tab>\<Home>\"\<CR>", 'xt')
90 call assert_equal('"map ,g', getreg(':')) 90 call assert_equal('"map ,g', getreg(':'))
91 call feedkeys(":map <L\<Tab>\<Home>\"\<CR>", 'xt') 91 call feedkeys(":map <L\<Tab>\<Home>\"\<CR>", 'xt')
92 call assert_equal('"map <Left>', getreg(':')) 92 call assert_equal('"map <Left>', getreg(':'))
93 call feedkeys(":map <A-Left>\<Tab>\<Home>\"\<CR>", 'xt') 93 call feedkeys(":map <A-Left>\<Tab>\<Home>\"\<CR>", 'xt')
94 call assert_equal('"map <A-Left>x', getreg(':')) 94 call assert_equal("\"map <A-Left>\<Tab>", getreg(':'))
95 unmap ,f 95 unmap ,f
96 unmap ,g 96 unmap ,g
97 unmap <Left> 97 unmap <Left>
98 unmap <A-Left>x 98 unmap <A-Left>x
99 99
100 set cpo-=< cpo-=B cpo-=k 100 set cpo-=< cpo-=B cpo-=k
101 map <Left> left 101 map <Left> left
102 call feedkeys(":map <L\<Tab>\<Home>\"\<CR>", 'xt') 102 call feedkeys(":map <L\<Tab>\<Home>\"\<CR>", 'xt')
103 call assert_equal('"map <Left>', getreg(':')) 103 call assert_equal('"map <Left>', getreg(':'))
104 call feedkeys(":map <M\<Tab>\<Home>\"\<CR>", 'xt') 104 call feedkeys(":map <M\<Tab>\<Home>\"\<CR>", 'xt')
105 call assert_equal('"map <M', getreg(':')) 105 call assert_equal("\"map <M\<Tab>", getreg(':'))
106 unmap <Left> 106 unmap <Left>
107 107
108 set cpo+=< 108 set cpo+=<
109 map <Left> left 109 map <Left> left
110 call feedkeys(":map <L\<Tab>\<Home>\"\<CR>", 'xt') 110 call feedkeys(":map <L\<Tab>\<Home>\"\<CR>", 'xt')