Mercurial > vim
view src/testdir/test88.in @ 14995:bc0f3c4fb992 v8.1.0509
patch 8.1.0509: checking cwd not accessible fails for root
commit https://github.com/vim/vim/commit/0b38f54730c3f9835ddade01c2263ce0f56c1c0f
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Nov 3 21:47:16 2018 +0100
patch 8.1.0509: checking cwd not accessible fails for root
Problem: Checking cwd not accessible fails for root. (James McCoy)
Solution: Skip this part of the test for root. (closes https://github.com/vim/vim/issues/3595)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 03 Nov 2018 22:00:06 +0100 |
parents | 43f444efe6a2 |
children |
line wrap: on
line source
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 :set lbr :normal $ GGk :set list listchars=tab:>- :normal 0 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|