Mercurial > vim
view src/testdir/test_langmap.vim @ 18914:4c0b420e7327 v8.2.0018
patch 8.2.0018: :join does not add white space where it should
Commit: https://github.com/vim/vim/commit/91b65e49440e77222a65b6f868507453239f409b
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Dec 17 22:10:58 2019 +0100
patch 8.2.0018: :join does not add white space where it should
Problem: :join does not add white space where it should. (Zdenek Dohnal)
Solution: Handle joining multiple lines propely.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 17 Dec 2019 22:15:04 +0100 |
parents | 8e9e9124c7a2 |
children | ad40333f2ec0 |
line wrap: on
line source
" tests for 'langmap' source check.vim CheckFeature langmap 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