Mercurial > vim
view src/testdir/test_autochdir.vim @ 20796:8b775cd23555 v8.2.0950
patch 8.2.0950: tagjump test fails
Commit: https://github.com/vim/vim/commit/13b8205b442f52f34deac98e3312a27dec14d8e2
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Jun 10 17:13:48 2020 +0200
patch 8.2.0950: tagjump test fails
Problem: Tagjump test fails.
Solution: Adjust expected text of the prompt.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 10 Jun 2020 17:15:04 +0200 |
parents | 26a04a556982 |
children | 08940efa6b4e |
line wrap: on
line source
" Test 'autochdir' behavior source check.vim CheckOption autochdir func Test_set_filename() let cwd = getcwd() call test_autochdir() set acd let s:li = [] autocmd DirChanged auto call add(s:li, "autocd") autocmd DirChanged auto call add(s:li, expand("<afile>")) new w samples/Xtest call assert_equal("Xtest", expand('%')) call assert_equal("samples", substitute(getcwd(), '.*/\(\k*\)', '\1', '')) call assert_equal(["autocd", getcwd()], s:li) bwipe! au! DirChanged set noacd call chdir(cwd) call delete('samples/Xtest') endfunc