diff options
| author | Bram Moolenaar <Bram@vim.org> | 2012-12-05 16:10:42 +0100 |
|---|---|---|
| committer | Bram Moolenaar <Bram@vim.org> | 2012-12-05 16:10:42 +0100 |
| commit | 9750bb199e0f171c185bd3a23591e57922765509 (patch) | |
| tree | 29f641fcf96efd47db0615626dd41e418314b677 /src/testdir/test88.in | |
| parent | 0f9d0869c7acd08a4dc9bb4ac84c9c7c4e9f079b (diff) | |
| download | vim-git-9750bb199e0f171c185bd3a23591e57922765509.tar.gz | |
updated for version 7.3.748v7.3.748
Problem: Cannot properly test conceal mode.
Solution: Add the screencol() and screenrow() functions. Use them in
test88. (Simon Ruderich)
Diffstat (limited to 'src/testdir/test88.in')
| -rw-r--r-- | src/testdir/test88.in | 85 |
1 files changed, 85 insertions, 0 deletions
diff --git a/src/testdir/test88.in b/src/testdir/test88.in new file mode 100644 index 000000000..1536b3bba --- /dev/null +++ b/src/testdir/test88.in @@ -0,0 +1,85 @@ +vim: set ft=vim + +Tests for correct display (cursor column position) with +conceal and +tabulators. + +STARTTEST +:so small.vim +:if !has('conceal') + e! test.ok + wq! test.out +:endif +:" Conceal settings. +:set conceallevel=2 +:set concealcursor=nc +:syntax match test /|/ conceal +:" Save current cursor position. Only works in <expr> mode, can't be used +:" with :normal because it moves the cursor to the command line. Thanks to ZyX +:" <zyx.vim@gmail.com> for the idea to use an <expr> mapping. +:let positions = [] +:nnoremap <expr> GG ":let positions += ['".screenrow().":".screencol()."']\n" +:" Start test. +/^start: +:normal ztj +GGk +:" We should end up in the same column when running these commands on the two +:" lines. +:normal ft +GGk +:normal $ +GGk +:normal 0j +GGk +:normal ft +GGk +:normal $ +GGk +:normal 0j0j +GGk +:" Same for next test block. +:normal ft +GGk +:normal $ +GGk +:normal 0j +GGk +:normal ft +GGk +:normal $ +GGk +:normal 0j0j +GGk +:" And check W with multiple tabs and conceals in a line. +:normal W +GGk +:normal W +GGk +:normal W +GGk +:normal $ +GGk +:normal 0j +GGk +:normal W +GGk +:normal W +GGk +:normal W +GGk +:normal $ +GGk +:" Display result. +:call append('$', 'end:') +:call append('$', positions) +:/^end/,$wq! test.out +ENDTEST + +start: +.concealed. text +|concealed| text + + .concealed. text + |concealed| text + +.a. .b. .c. .d. +|a| |b| |c| |d| |
