comparison src/testdir/test_messages.vim @ 20627:8bce783af0cb v8.2.0867

patch 8.2.0867: using {xxx} for encoding a modifier is not nice Commit: https://github.com/vim/vim/commit/fccd93f0917234b962ce07d1df3adf9d7105936f Author: Bram Moolenaar <Bram@vim.org> Date: Sun May 31 22:06:51 2020 +0200 patch 8.2.0867: using \{xxx} for encoding a modifier is not nice Problem: Using \{xxx} for encoding a modifier is not nice. Solution: Use \<*xxx> instead, since it's the same as \<xxx> but producing a different code.
author Bram Moolenaar <Bram@vim.org>
date Sun, 31 May 2020 22:15:03 +0200
parents 116c7bd5e980
children 08940efa6b4e
comparison
equal deleted inserted replaced
20626:38f728a93c07 20627:8bce783af0cb
304 endfunc 304 endfunc
305 305
306 func Test_mapping_at_hit_return_prompt() 306 func Test_mapping_at_hit_return_prompt()
307 nnoremap <C-B> :echo "hit ctrl-b"<CR> 307 nnoremap <C-B> :echo "hit ctrl-b"<CR>
308 call feedkeys(":ls\<CR>", "xt") 308 call feedkeys(":ls\<CR>", "xt")
309 call feedkeys("\{C-B}", "xt") 309 call feedkeys("\<*C-B>", "xt")
310 call assert_match('hit ctrl-b', Screenline(&lines - 1)) 310 call assert_match('hit ctrl-b', Screenline(&lines - 1))
311 nunmap <C-B> 311 nunmap <C-B>
312 endfunc 312 endfunc
313 313
314 " vim: shiftwidth=2 sts=2 expandtab 314 " vim: shiftwidth=2 sts=2 expandtab