mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 18:55:14 -07:00
feat(main): expand file ~\ or ~/ prefix on Windows (#28515)
In command_line_scan() for MSWIN, expand "~\" or "~/" prefixed paths to the USERPROFILE environment variable for the user's profile directory. Fix #23901 Signed-off-by: Rafael Kitover <rkitover@gmail.com>
This commit is contained in:
parent
bdb81afab3
commit
fdeb01cd77
@ -87,7 +87,9 @@ DEFAULTS
|
||||
|
||||
EDITOR
|
||||
|
||||
• TODO
|
||||
* On Windows, filename arguments on the command-line prefixed with "~\" or
|
||||
"~/" are now expanded to the user's profile directory, not a relative path
|
||||
to a literal "~" directory.
|
||||
|
||||
EVENTS
|
||||
|
||||
|
@ -1444,6 +1444,19 @@ scripterror:
|
||||
ga_grow(&global_alist.al_ga, 1);
|
||||
char *p = xstrdup(argv[0]);
|
||||
|
||||
// On Windows expand "~\" or "~/" prefix in file names to profile directory.
|
||||
#ifdef MSWIN
|
||||
if (*p == '~' && (p[1] == '\\' || p[1] == '/')) {
|
||||
char *profile_dir = vim_getenv("HOME");
|
||||
size_t size = strlen(profile_dir) + strlen(p);
|
||||
char *tilde_expanded = xmalloc(size);
|
||||
snprintf(tilde_expanded, size, "%s%s", profile_dir, p + 1);
|
||||
xfree(p);
|
||||
xfree(profile_dir);
|
||||
p = tilde_expanded;
|
||||
}
|
||||
#endif
|
||||
|
||||
if (parmp->diff_mode && os_isdir(p) && GARGCOUNT > 0
|
||||
&& !os_isdir(alist_name(&GARGLIST[0]))) {
|
||||
char *r = concat_fnames(p, path_tail(alist_name(&GARGLIST[0])), true);
|
||||
|
Loading…
Reference in New Issue
Block a user