Mercurial > vim
view src/testdir/test_langmap.vim @ 13860:7f892e37b017 v8.0.1801
patch 8.0.1801: MS-Windows: redirecting terminal output does not work
commit https://github.com/vim/vim/commit/f25329cb94e481999e8b08d886cc0f0169e2020c
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun May 6 21:49:32 2018 +0200
patch 8.0.1801: MS-Windows: redirecting terminal output does not work
Problem: MS-Windows: redirecting terminal output does not work.
Solution: Intercept the text written to the terminal and write it to the
file.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 06 May 2018 22:00:07 +0200 |
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