Mercurial > vim
view src/testdir/test_autochdir.vim @ 17337:9ccc84e56c4e
Added tag v8.1.1667 for changeset 81705f4d9e03bb884fcdc4f9889188f6b44e1889
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 12 Jul 2019 18:00:06 +0200 |
parents | ebdf6cd89910 |
children | 0da9bc55c31a |
line wrap: on
line source
" Test 'autochdir' behavior if !exists("+autochdir") throw 'Skipped: autochdir feature missing' endif 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