]> granicus.if.org Git - vim/commitdiff
patch 7.4.1108 v7.4.1108
authorBram Moolenaar <Bram@vim.org>
Sat, 16 Jan 2016 20:50:51 +0000 (21:50 +0100)
committerBram Moolenaar <Bram@vim.org>
Sat, 16 Jan 2016 20:50:51 +0000 (21:50 +0100)
Problem:    Expanding "~" halfway a file name.
Solution:   Handle the file name as one name. (Marco Hinz)  Add a test.
            Closes #564.

src/Makefile
src/misc2.c
src/testdir/test27.in [deleted file]
src/testdir/test27.ok [deleted file]
src/testdir/test_alot.vim
src/testdir/test_expand.vim [new file with mode: 0644]
src/version.c

index 42c86f30b532068ab34aa7a6843f367790e18966..4977d7cb27f7831697d948077c4420784973a6e5 100644 (file)
@@ -1975,12 +1975,15 @@ test1 \
        test70 test71 test72 test73 test74 test75 test76 test77 test78 test79 \
        test80 test81 test82 test83 test84 test85 test86 test87 test88 test89 \
        test90 test91 test92 test93 test94 test95 test96 test97 test98 test99 \
-       test100 test101 test102 test103 test104 test105 test106 test107:
+       test100 test101 test102 test103 test104 test105 test106 test107 test108:
        cd testdir; rm -f $@.out; $(MAKE) -f Makefile $@.out VIMPROG=../$(VIMTARGET) $(GUI_TESTARG) SCRIPTSOURCE=../$(SCRIPTSOURCE)
 
 test_assert \
        test_backspace_opt \
        test_cdo \
+       test_cursor_func \
+       test_delete \
+       test_expand \
        test_hardcopy \
        test_increment \
        test_lispwords \
index 0ee57fc4a69a8c2f2aafaf55889c88d936f312d0..4e9e47357e1de6971c16cdfc5991249ca703a2d5 100644 (file)
@@ -5543,7 +5543,7 @@ find_file_in_path_option(ptr, len, options, first, path_option,
        /* copy file name into NameBuff, expanding environment variables */
        save_char = ptr[len];
        ptr[len] = NUL;
-       expand_env(ptr, NameBuff, MAXPATHL);
+       expand_env_esc(ptr, NameBuff, MAXPATHL, FALSE, TRUE, NULL);
        ptr[len] = save_char;
 
        vim_free(ff_file_to_find);
diff --git a/src/testdir/test27.in b/src/testdir/test27.in
deleted file mode 100644 (file)
index 2df16d9..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-Test for expanding file names
-
-STARTTEST
-:!mkdir Xdir1
-:!mkdir Xdir2
-:!mkdir Xdir3
-:cd Xdir3
-:!mkdir Xdir4
-:cd ..
-:w Xdir1/file
-:w Xdir3/Xdir4/file
-:n Xdir?/*/file
-Go\12%\e:.w! test.out
-:n! Xdir?/*/nofile
-Go\12%\e:.w >>test.out
-:e! xx
-:!rm -rf Xdir1 Xdir2 Xdir3
-:qa!
-ENDTEST
-
diff --git a/src/testdir/test27.ok b/src/testdir/test27.ok
deleted file mode 100644 (file)
index c35f243..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-Xdir3/Xdir4/file
-Xdir?/*/nofile
index 3cd1f824ee9412c44f38daf509eaaedffc847872..e89afb49adcbd68671f6a4398642a7990dff3a44 100644 (file)
@@ -4,6 +4,7 @@
 source test_backspace_opt.vim
 source test_cursor_func.vim
 source test_delete.vim
+source test_expand.vim
 source test_lispwords.vim
 source test_menu.vim
 source test_searchpos.vim
diff --git a/src/testdir/test_expand.vim b/src/testdir/test_expand.vim
new file mode 100644 (file)
index 0000000..fd999db
--- /dev/null
@@ -0,0 +1,36 @@
+" Test for expanding file names
+
+func Test_with_directories()
+  call mkdir('Xdir1')
+  call mkdir('Xdir2')
+  call mkdir('Xdir3')
+  cd Xdir3
+  call mkdir('Xdir4')
+  cd ..
+
+  split Xdir1/file
+  call setline(1, ['a', 'b'])
+  w
+  w Xdir3/Xdir4/file
+  close
+
+  next Xdir?/*/file
+  call assert_equal('Xdir3/Xdir4/file', expand('%'))
+  next! Xdir?/*/nofile
+  call assert_equal('Xdir?/*/nofile', expand('%'))
+
+  call delete('Xdir1', 'rf')
+  call delete('Xdir2', 'rf')
+  call delete('Xdir3', 'rf')
+endfunc
+
+func Test_with_tilde()
+  let dir = getcwd()
+  call mkdir('Xdir ~ dir')
+  call assert_true(isdirectory('Xdir ~ dir'))
+  cd Xdir\ ~\ dir
+  call assert_true(getcwd() =~ 'Xdir \~ dir')
+  exe 'cd ' . fnameescape(dir)
+  call delete('Xdir ~ dir', 'd')
+  call assert_false(isdirectory('Xdir ~ dir'))
+endfunc
index 9c24efd0df7d226b506d55633e912563745468b8..1a61df43a0c5ad2edd051bf8f26b7124d04488c3 100644 (file)
@@ -741,6 +741,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1108,
 /**/
     1107,
 /**/