view src/testdir/test_langmap.vim @ 15263:ad065b8123e8 v8.1.0640

patch 8.1.0640: get E14 while typing command :tab with 'incsearch' set commit https://github.com/vim/vim/commit/548e5985734e4b216852205879daf9bfb00dbe5a Author: Bram Moolenaar <Bram@vim.org> Date: Wed Dec 26 21:45:00 2018 +0100 patch 8.1.0640: get E14 while typing command :tab with 'incsearch' set Problem: Get E14 while typing command :tab with 'incsearch' set. Solution: Do not give an error when looking for the command. (Yasuhiro Higashi)
author Bram Moolenaar <Bram@vim.org>
date Wed, 26 Dec 2018 22:00:06 +0100
parents 1a595b2a4d5e
children f38fcbf343ce
line wrap: on
line source

" tests for 'langmap'

if !has('langmap')
  finish
endif

func Test_langmap()
  new
  set langmap=}l,^x,%v

  call setline(1, ['abc'])
  call feedkeys('gg0}^', 'tx')
  call assert_equal('ac', getline(1))

  " in Replace mode
  " need silent! to avoid a delay when entering Insert mode
  call setline(1, ['abcde'])
  silent! call feedkeys("gg0lR%{z\<Esc>00", 'tx')
  call assert_equal('a%{ze', getline(1))

  " in Select mode
  " need silent! to avoid a delay when entering Insert mode
  call setline(1, ['abcde'])
  silent! call feedkeys("gg0}%}\<C-G>}^\<Esc>00", 'tx')
  call assert_equal('a}^de', getline(1))

  quit!
endfunc