Hi Axel!
On Mi, 01 Apr 2015, Axel Bender wrote:
> Given the following .vimrc:
>
> ---------------
> set autochdir
> set encoding=utf-8
> ---------------
>
> and the following directory/file structure:
>
> ------
> a\aa
> b\bb
> ------
>
> diffing aa and bb with
>
> ------------------
> gvim -d a\aa b\bb
> ------------------
>
> will not perform a diff. Instead message "b\bb [NEW DIRECTORY] is seen.
>
> If either of the settings is omitted, the diff is performed.
>
> Here: Windows 7 64-bit, version 7.4.688 MinGW-w64
I can confirm, this bug only affects Windows. Here is patch:
Best,
Christian
--
Ein frei denkender Mensch bleibt nicht da stehen, wo der Zufall ihn
hinstößt.
-- Heinrich von Kleist
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.
diff --git a/src/main.c b/src/main.c
--- a/src/main.c
+++ b/src/main.c
@@ -110,7 +110,7 @@ static void check_tty __ARGS((mparm_T *p
static void read_stdin __ARGS((void));
static void create_windows __ARGS((mparm_T *parmp));
# ifdef FEAT_WINDOWS
-static void edit_buffers __ARGS((mparm_T *parmp));
+static void edit_buffers __ARGS((mparm_T *parmp, char_u *cwd));
# endif
static void exe_pre_commands __ARGS((mparm_T *parmp));
static void exe_commands __ARGS((mparm_T *parmp));
@@ -168,6 +168,7 @@ main
char_u *fname = NULL; /* file name from command line */
mparm_T params; /* various parameters passed between
* main() and other functions. */
+ char_u *cwd = NULL; /* current workding dir */
#ifdef STARTUPTIME
int i;
#endif
@@ -404,12 +405,16 @@ main
*/
if (!params.literal)
{
+ cwd = alloc(MAXPATHL);
+ if (cwd != NULL)
+ mch_dirname(cwd, MAXPATHL);
/* Temporarily add '(' and ')' to 'isfname'. These are valid
* filename characters but are excluded from 'isfname' to make
* "gf" work on a file name in parenthesis (e.g.: see vim.h). */
do_cmdline_cmd((char_u *)":set isf+=(,)");
alist_expand(NULL, 0);
do_cmdline_cmd((char_u *)":set isf&");
+ mch_chdir((char *)cwd);
}
#endif
fname = alist_name(&GARGLIST[0]);
@@ -435,6 +440,8 @@ main
* If the cd fails, it doesn't matter.
*/
(void)vim_chdirfile(fname);
+ if (cwd != NULL)
+ mch_dirnamem(cwd, MAXPATHL);
}
#endif
TIME_MSG("expanding arguments");
@@ -488,6 +495,8 @@ main
expand_env((char_u *)"$HOME", NameBuff, MAXPATHL);
vim_chdir(NameBuff);
}
+ if (cwd != NULL)
+ mch_dirnamem(cwd, MAXPATHL);
}
}
#endif
@@ -900,8 +909,9 @@ vim_main2(int argc UNUSED, char **argv U
* If opened more than one window, start editing files in the other
* windows.
*/
- edit_buffers(¶ms);
+ edit_buffers(¶ms, cwd);
#endif
+ vim_free(cwd);
#ifdef FEAT_DIFF
if (params.diff_mode)
@@ -2730,8 +2740,9 @@ create_windows(parmp)
* windows. make_windows() has already opened the windows.
*/
static void
-edit_buffers(parmp)
+edit_buffers(parmp, cwd)
mparm_T *parmp;
+ char_u *cwd; /* current working dir */
{
int arg_idx; /* index in argument list */
int i;
@@ -2756,6 +2767,8 @@ edit_buffers(parmp)
arg_idx = 1;
for (i = 1; i < parmp->window_count; ++i)
{
+ if (cwd != NULL)
+ mch_chdir((char *)cwd);
/* When w_arg_idx is -1 remove the window (see create_windows()). */
if (curwin->w_arg_idx == -1)
{