diff options
author | erw7 <erw7.github@gmail.com> | 2019-08-11 16:51:00 +0900 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-08-11 09:51:00 +0200 |
commit | 7d664837e1a954c6b4aabbbf62ecc55c58454f06 (patch) | |
tree | e8d6c39509dc71e7935d85cadf2de06f1616ffea /src/nvim/testdir | |
parent | e5d388f23a6809ba2bd600e813f2a4b0bdbd20c8 (diff) | |
download | rneovim-7d664837e1a954c6b4aabbbf62ecc55c58454f06.tar.gz rneovim-7d664837e1a954c6b4aabbbf62ecc55c58454f06.tar.bz2 rneovim-7d664837e1a954c6b4aabbbf62ecc55c58454f06.zip |
win: expand nested env var #10662
Vim-compatible behavior for a Windows edge case.
Diffstat (limited to 'src/nvim/testdir')
-rw-r--r-- | src/nvim/testdir/test_windows_home.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/testdir/test_windows_home.vim b/src/nvim/testdir/test_windows_home.vim index bbcbf96050..2e311b9aa5 100644 --- a/src/nvim/testdir/test_windows_home.vim +++ b/src/nvim/testdir/test_windows_home.vim @@ -86,7 +86,7 @@ func Test_WindowsHome() let $HOME = '%USERPROFILE%\bar' let $HOMEDRIVE = 'unused' let $HOMEPATH = 'unused' - " call CheckHome('C:\foo\bar', '%USERPROFILE%\bar') + call CheckHome('C:\foo\bar', '%USERPROFILE%\bar') " Invalid $HOME is kept let $USERPROFILE = 'C:\foo' |