Mercurial > vim
view src/testdir/test_autochdir.vim @ 17951:d340eabb6705
Added tag v8.1.1971 for changeset bb0e25a8b5d70365ac562c52580d0fb57561c86e
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 03 Sep 2019 23:30:05 +0200 |
parents | 0da9bc55c31a |
children | 26a04a556982 |
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 exe 'cd ' . cwd call delete('samples/Xtest') endfunc