Mercurial > vim
view src/testdir/test_autochdir.vim @ 23211:96a72f1f6c0c v8.2.2151
patch 8.2.2151: $dir not expanded when configure checks for moonjit
Commit: https://github.com/vim/vim/commit/a79a8944dade9115ccaa5a06a076dfb257e56c62
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Dec 17 20:50:25 2020 +0100
patch 8.2.2151: $dir not expanded when configure checks for moonjit
Problem: $dir not expanded when configure checks for moonjit.
Solution: Use double quotes instead of single quotes. (closes https://github.com/vim/vim/issues/7478)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 17 Dec 2020 21:00:05 +0100 |
parents | 08940efa6b4e |
children | fa8161b003f6 |
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 " vim: shiftwidth=2 sts=2 expandtab