Mercurial > vim
changeset 2133:2b273c71a14b v7.2.415
updated for version 7.2.415
Problem: Win32: Can't open a remote file when starting Vim.
Solution: Don't invoke cygwin_conv_path() for URLs. (Tomoya Adachi)
author | Bram Moolenaar <bram@zimbu.org> |
---|---|
date | Fri, 07 May 2010 16:35:04 +0200 |
parents | 89300f5e013c |
children | e9c9f37be306 |
files | src/main.c src/version.c |
diffstat | 2 files changed, 4 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/main.c +++ b/src/main.c @@ -1477,7 +1477,7 @@ parse_command_name(parmp) ++initstr; } - /* Avoid using evim mode for "editor". */ + /* Use evim mode for "evim" and "egvim", not for "editor". */ if (TOLOWER_ASC(initstr[0]) == 'e' && (TOLOWER_ASC(initstr[1]) == 'v' || TOLOWER_ASC(initstr[1]) == 'g')) @@ -2262,7 +2262,7 @@ scripterror: * Look for evidence of non-Cygwin paths before we bother. * This is only for when using the Unix files. */ - if (strpbrk(p, "\\:") != NULL) + if (strpbrk(p, "\\:") != NULL && !path_with_url(p)) { char posix_path[PATH_MAX];