mirror of
https://github.com/vim/vim
synced 2025-07-16 09:12:00 +00:00
patch 8.1.1979: code for handling file names is spread out
Problem: Code for handling file names is spread out. Solution: Move code to new filepath.c file. Graduate FEAT_MODIFY_FNAME.
This commit is contained in:
2
Filelist
2
Filelist
@ -45,6 +45,7 @@ SRC_ALL = \
|
||||
src/ex_getln.c \
|
||||
src/feature.h \
|
||||
src/fileio.c \
|
||||
src/filepath.c \
|
||||
src/findfile.c \
|
||||
src/fold.c \
|
||||
src/getchar.c \
|
||||
@ -196,6 +197,7 @@ SRC_ALL = \
|
||||
src/proto/ex_eval.pro \
|
||||
src/proto/ex_getln.pro \
|
||||
src/proto/fileio.pro \
|
||||
src/proto/filepath.pro \
|
||||
src/proto/findfile.pro \
|
||||
src/proto/fold.pro \
|
||||
src/proto/getchar.pro \
|
||||
|
@ -729,6 +729,7 @@ OBJ = \
|
||||
$(OUTDIR)/ex_eval.o \
|
||||
$(OUTDIR)/ex_getln.o \
|
||||
$(OUTDIR)/fileio.o \
|
||||
$(OUTDIR)/filepath.o \
|
||||
$(OUTDIR)/findfile.o \
|
||||
$(OUTDIR)/fold.o \
|
||||
$(OUTDIR)/getchar.o \
|
||||
|
@ -49,6 +49,7 @@ SRC = arabic.c \
|
||||
ex_eval.c \
|
||||
ex_getln.c \
|
||||
fileio.c \
|
||||
filepath.c \
|
||||
findfile.c \
|
||||
fold.c \
|
||||
getchar.c \
|
||||
|
@ -738,6 +738,7 @@ OBJ = \
|
||||
$(OUTDIR)\ex_eval.obj \
|
||||
$(OUTDIR)\ex_getln.obj \
|
||||
$(OUTDIR)\fileio.obj \
|
||||
$(OUTDIR)\filepath.obj \
|
||||
$(OUTDIR)\findfile.obj \
|
||||
$(OUTDIR)\fold.obj \
|
||||
$(OUTDIR)\getchar.obj \
|
||||
@ -1501,6 +1502,8 @@ $(OUTDIR)/ex_getln.obj: $(OUTDIR) ex_getln.c $(INCL)
|
||||
|
||||
$(OUTDIR)/fileio.obj: $(OUTDIR) fileio.c $(INCL)
|
||||
|
||||
$(OUTDIR)/filepath.obj: $(OUTDIR) filepath.c $(INCL)
|
||||
|
||||
$(OUTDIR)/findfile.obj: $(OUTDIR) findfile.c $(INCL)
|
||||
|
||||
$(OUTDIR)/fold.obj: $(OUTDIR) fold.c $(INCL)
|
||||
@ -1781,6 +1784,7 @@ proto.h: \
|
||||
proto/ex_eval.pro \
|
||||
proto/ex_getln.pro \
|
||||
proto/fileio.pro \
|
||||
proto/filepath.pro \
|
||||
proto/findfile.pro \
|
||||
proto/getchar.pro \
|
||||
proto/hardcopy.pro \
|
||||
|
@ -2,7 +2,7 @@
|
||||
# Makefile for Vim on OpenVMS
|
||||
#
|
||||
# Maintainer: Zoltan Arpadffy <arpadffy@polarhome.com>
|
||||
# Last change: 2019 Aug 18
|
||||
# Last change: 2019 Sep 04
|
||||
#
|
||||
# This has script been tested on VMS 6.2 to 8.2 on DEC Alpha, VAX and IA64
|
||||
# with MMS and MMK
|
||||
@ -310,9 +310,9 @@ ALL_LIBS = $(LIBS) $(GUI_LIB_DIR) $(GUI_LIB) \
|
||||
SRC = arabic.c arglist.c autocmd.c beval.c blob.c blowfish.c buffer.c \
|
||||
change.c charset.c cmdexpand.c cmdhist.c crypt.c crypt_zip.c \
|
||||
debugger.c dict.c diff.c digraph.c edit.c eval.c evalfunc.c \
|
||||
evalvars.c ex_cmds.c \
|
||||
ex_cmds2.c ex_docmd.c ex_eval.c ex_getln.c if_cscope.c if_xcmdsrv.c \
|
||||
fileio.c findfile.c fold.c getchar.c hardcopy.c hashtab.c highlight.c \
|
||||
evalvars.c ex_cmds.c ex_cmds2.c ex_docmd.c ex_eval.c ex_getln.c \
|
||||
if_cscope.c if_xcmdsrv.c fileio.c filepath.c, findfile.c fold.c \
|
||||
getchar.c hardcopy.c hashtab.c highlight.c \
|
||||
indent.c insexpand.c json.c list.c main.c map.c mark.c menu.c mbyte.c \
|
||||
memfile.c memline.c message.c misc1.c misc2.c move.c normal.c ops.c \
|
||||
option.c popupmnu.c popupwin.c profiler.c quickfix.c regexp.c \
|
||||
@ -328,8 +328,8 @@ OBJ = arabic.obj arglist.obj autocmd.obj beval.obj blob.obj blowfish.obj \
|
||||
buffer.obj change.obj charset.obj cmdexpand.obj cmdhist.obj \
|
||||
crypt.obj crypt_zip.obj debugger.obj dict.obj diff.obj digraph.obj \
|
||||
edit.obj eval.obj evalfunc.obj evalvars.obj ex_cmds.obj ex_cmds2.obj \
|
||||
ex_docmd.obj \
|
||||
ex_eval.obj ex_getln.obj if_cscope.obj if_xcmdsrv.obj fileio.obj \
|
||||
ex_docmd.obj ex_eval.obj ex_getln.obj if_cscope.obj if_xcmdsrv.obj \
|
||||
fileio.obj filepath.obj \
|
||||
findfile.obj fold.obj getchar.obj hardcopy.obj hashtab.obj \
|
||||
highlight.obj indent.obj insexpand.obj json.obj list.obj main.obj \
|
||||
map.obj mark.obj menu.obj memfile.obj memline.obj message.obj \
|
||||
@ -599,6 +599,10 @@ fileio.obj : fileio.c vim.h [.auto]config.h feature.h os_unix.h \
|
||||
ascii.h keymap.h term.h macros.h structs.h regexp.h \
|
||||
gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
|
||||
globals.h
|
||||
filepath.obj : filepath.c vim.h [.auto]config.h feature.h os_unix.h \
|
||||
ascii.h keymap.h term.h macros.h structs.h regexp.h \
|
||||
gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
|
||||
globals.h
|
||||
findfile.obj : findfile.c vim.h [.auto]config.h feature.h os_unix.h \
|
||||
ascii.h keymap.h term.h macros.h structs.h regexp.h \
|
||||
gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
|
||||
|
10
src/Makefile
10
src/Makefile
@ -1603,6 +1603,7 @@ BASIC_SRC = \
|
||||
ex_eval.c \
|
||||
ex_getln.c \
|
||||
fileio.c \
|
||||
filepath.c \
|
||||
findfile.c \
|
||||
fold.c \
|
||||
getchar.c \
|
||||
@ -1733,6 +1734,7 @@ OBJ_COMMON = \
|
||||
objects/ex_eval.o \
|
||||
objects/ex_getln.o \
|
||||
objects/fileio.o \
|
||||
objects/filepath.o \
|
||||
objects/findfile.o \
|
||||
objects/fold.o \
|
||||
objects/getchar.o \
|
||||
@ -1876,6 +1878,7 @@ PRO_AUTO = \
|
||||
ex_eval.pro \
|
||||
ex_getln.pro \
|
||||
fileio.pro \
|
||||
filepath.pro \
|
||||
findfile.pro \
|
||||
fold.pro \
|
||||
getchar.pro \
|
||||
@ -3101,6 +3104,9 @@ objects/ex_getln.o: ex_getln.c
|
||||
objects/fileio.o: fileio.c
|
||||
$(CCC) -o $@ fileio.c
|
||||
|
||||
objects/filepath.o: filepath.c
|
||||
$(CCC) -o $@ filepath.c
|
||||
|
||||
objects/findfile.o: findfile.c
|
||||
$(CCC) -o $@ findfile.c
|
||||
|
||||
@ -3629,6 +3635,10 @@ objects/fileio.o: fileio.c vim.h protodef.h auto/config.h feature.h os_unix.h \
|
||||
auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
|
||||
proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
|
||||
proto.h globals.h
|
||||
objects/filepath.o: filepath.c vim.h protodef.h auto/config.h feature.h os_unix.h \
|
||||
auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
|
||||
proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
|
||||
proto.h globals.h
|
||||
objects/findfile.o: findfile.c vim.h protodef.h auto/config.h feature.h os_unix.h \
|
||||
auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
|
||||
proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
|
||||
|
@ -36,6 +36,7 @@ eval.c | expression evaluation
|
||||
evalfunc.c | built-in functions
|
||||
evalvars.c | vim variables
|
||||
fileio.c | reading and writing files
|
||||
filepath.c | dealing with file names and paths
|
||||
findfile.c | search for files in 'path'
|
||||
fold.c | folding
|
||||
getchar.c | getting characters and key mapping
|
||||
|
647
src/eval.c
647
src/eval.c
@ -6387,650 +6387,7 @@ typval_tostring(typval_T *arg)
|
||||
return ret;
|
||||
}
|
||||
|
||||
#endif /* FEAT_EVAL */
|
||||
|
||||
#if defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL) || defined(PROTO)
|
||||
|
||||
#ifdef MSWIN
|
||||
/*
|
||||
* Functions for ":8" filename modifier: get 8.3 version of a filename.
|
||||
*/
|
||||
|
||||
/*
|
||||
* Get the short path (8.3) for the filename in "fnamep".
|
||||
* Only works for a valid file name.
|
||||
* When the path gets longer "fnamep" is changed and the allocated buffer
|
||||
* is put in "bufp".
|
||||
* *fnamelen is the length of "fnamep" and set to 0 for a nonexistent path.
|
||||
* Returns OK on success, FAIL on failure.
|
||||
*/
|
||||
static int
|
||||
get_short_pathname(char_u **fnamep, char_u **bufp, int *fnamelen)
|
||||
{
|
||||
int l, len;
|
||||
char_u *newbuf;
|
||||
|
||||
len = *fnamelen;
|
||||
l = GetShortPathName((LPSTR)*fnamep, (LPSTR)*fnamep, len);
|
||||
if (l > len - 1)
|
||||
{
|
||||
/* If that doesn't work (not enough space), then save the string
|
||||
* and try again with a new buffer big enough. */
|
||||
newbuf = vim_strnsave(*fnamep, l);
|
||||
if (newbuf == NULL)
|
||||
return FAIL;
|
||||
|
||||
vim_free(*bufp);
|
||||
*fnamep = *bufp = newbuf;
|
||||
|
||||
/* Really should always succeed, as the buffer is big enough. */
|
||||
l = GetShortPathName((LPSTR)*fnamep, (LPSTR)*fnamep, l+1);
|
||||
}
|
||||
|
||||
*fnamelen = l;
|
||||
return OK;
|
||||
}
|
||||
|
||||
/*
|
||||
* Get the short path (8.3) for the filename in "fname". The converted
|
||||
* path is returned in "bufp".
|
||||
*
|
||||
* Some of the directories specified in "fname" may not exist. This function
|
||||
* will shorten the existing directories at the beginning of the path and then
|
||||
* append the remaining non-existing path.
|
||||
*
|
||||
* fname - Pointer to the filename to shorten. On return, contains the
|
||||
* pointer to the shortened pathname
|
||||
* bufp - Pointer to an allocated buffer for the filename.
|
||||
* fnamelen - Length of the filename pointed to by fname
|
||||
*
|
||||
* Returns OK on success (or nothing done) and FAIL on failure (out of memory).
|
||||
*/
|
||||
static int
|
||||
shortpath_for_invalid_fname(
|
||||
char_u **fname,
|
||||
char_u **bufp,
|
||||
int *fnamelen)
|
||||
{
|
||||
char_u *short_fname, *save_fname, *pbuf_unused;
|
||||
char_u *endp, *save_endp;
|
||||
char_u ch;
|
||||
int old_len, len;
|
||||
int new_len, sfx_len;
|
||||
int retval = OK;
|
||||
|
||||
/* Make a copy */
|
||||
old_len = *fnamelen;
|
||||
save_fname = vim_strnsave(*fname, old_len);
|
||||
pbuf_unused = NULL;
|
||||
short_fname = NULL;
|
||||
|
||||
endp = save_fname + old_len - 1; /* Find the end of the copy */
|
||||
save_endp = endp;
|
||||
|
||||
/*
|
||||
* Try shortening the supplied path till it succeeds by removing one
|
||||
* directory at a time from the tail of the path.
|
||||
*/
|
||||
len = 0;
|
||||
for (;;)
|
||||
{
|
||||
/* go back one path-separator */
|
||||
while (endp > save_fname && !after_pathsep(save_fname, endp + 1))
|
||||
--endp;
|
||||
if (endp <= save_fname)
|
||||
break; /* processed the complete path */
|
||||
|
||||
/*
|
||||
* Replace the path separator with a NUL and try to shorten the
|
||||
* resulting path.
|
||||
*/
|
||||
ch = *endp;
|
||||
*endp = 0;
|
||||
short_fname = save_fname;
|
||||
len = (int)STRLEN(short_fname) + 1;
|
||||
if (get_short_pathname(&short_fname, &pbuf_unused, &len) == FAIL)
|
||||
{
|
||||
retval = FAIL;
|
||||
goto theend;
|
||||
}
|
||||
*endp = ch; /* preserve the string */
|
||||
|
||||
if (len > 0)
|
||||
break; /* successfully shortened the path */
|
||||
|
||||
/* failed to shorten the path. Skip the path separator */
|
||||
--endp;
|
||||
}
|
||||
|
||||
if (len > 0)
|
||||
{
|
||||
/*
|
||||
* Succeeded in shortening the path. Now concatenate the shortened
|
||||
* path with the remaining path at the tail.
|
||||
*/
|
||||
|
||||
/* Compute the length of the new path. */
|
||||
sfx_len = (int)(save_endp - endp) + 1;
|
||||
new_len = len + sfx_len;
|
||||
|
||||
*fnamelen = new_len;
|
||||
vim_free(*bufp);
|
||||
if (new_len > old_len)
|
||||
{
|
||||
/* There is not enough space in the currently allocated string,
|
||||
* copy it to a buffer big enough. */
|
||||
*fname = *bufp = vim_strnsave(short_fname, new_len);
|
||||
if (*fname == NULL)
|
||||
{
|
||||
retval = FAIL;
|
||||
goto theend;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
/* Transfer short_fname to the main buffer (it's big enough),
|
||||
* unless get_short_pathname() did its work in-place. */
|
||||
*fname = *bufp = save_fname;
|
||||
if (short_fname != save_fname)
|
||||
vim_strncpy(save_fname, short_fname, len);
|
||||
save_fname = NULL;
|
||||
}
|
||||
|
||||
/* concat the not-shortened part of the path */
|
||||
vim_strncpy(*fname + len, endp, sfx_len);
|
||||
(*fname)[new_len] = NUL;
|
||||
}
|
||||
|
||||
theend:
|
||||
vim_free(pbuf_unused);
|
||||
vim_free(save_fname);
|
||||
|
||||
return retval;
|
||||
}
|
||||
|
||||
/*
|
||||
* Get a pathname for a partial path.
|
||||
* Returns OK for success, FAIL for failure.
|
||||
*/
|
||||
static int
|
||||
shortpath_for_partial(
|
||||
char_u **fnamep,
|
||||
char_u **bufp,
|
||||
int *fnamelen)
|
||||
{
|
||||
int sepcount, len, tflen;
|
||||
char_u *p;
|
||||
char_u *pbuf, *tfname;
|
||||
int hasTilde;
|
||||
|
||||
/* Count up the path separators from the RHS.. so we know which part
|
||||
* of the path to return. */
|
||||
sepcount = 0;
|
||||
for (p = *fnamep; p < *fnamep + *fnamelen; MB_PTR_ADV(p))
|
||||
if (vim_ispathsep(*p))
|
||||
++sepcount;
|
||||
|
||||
/* Need full path first (use expand_env() to remove a "~/") */
|
||||
hasTilde = (**fnamep == '~');
|
||||
if (hasTilde)
|
||||
pbuf = tfname = expand_env_save(*fnamep);
|
||||
else
|
||||
pbuf = tfname = FullName_save(*fnamep, FALSE);
|
||||
|
||||
len = tflen = (int)STRLEN(tfname);
|
||||
|
||||
if (get_short_pathname(&tfname, &pbuf, &len) == FAIL)
|
||||
return FAIL;
|
||||
|
||||
if (len == 0)
|
||||
{
|
||||
/* Don't have a valid filename, so shorten the rest of the
|
||||
* path if we can. This CAN give us invalid 8.3 filenames, but
|
||||
* there's not a lot of point in guessing what it might be.
|
||||
*/
|
||||
len = tflen;
|
||||
if (shortpath_for_invalid_fname(&tfname, &pbuf, &len) == FAIL)
|
||||
return FAIL;
|
||||
}
|
||||
|
||||
/* Count the paths backward to find the beginning of the desired string. */
|
||||
for (p = tfname + len - 1; p >= tfname; --p)
|
||||
{
|
||||
if (has_mbyte)
|
||||
p -= mb_head_off(tfname, p);
|
||||
if (vim_ispathsep(*p))
|
||||
{
|
||||
if (sepcount == 0 || (hasTilde && sepcount == 1))
|
||||
break;
|
||||
else
|
||||
sepcount --;
|
||||
}
|
||||
}
|
||||
if (hasTilde)
|
||||
{
|
||||
--p;
|
||||
if (p >= tfname)
|
||||
*p = '~';
|
||||
else
|
||||
return FAIL;
|
||||
}
|
||||
else
|
||||
++p;
|
||||
|
||||
/* Copy in the string - p indexes into tfname - allocated at pbuf */
|
||||
vim_free(*bufp);
|
||||
*fnamelen = (int)STRLEN(p);
|
||||
*bufp = pbuf;
|
||||
*fnamep = p;
|
||||
|
||||
return OK;
|
||||
}
|
||||
#endif // MSWIN
|
||||
|
||||
/*
|
||||
* Adjust a filename, according to a string of modifiers.
|
||||
* *fnamep must be NUL terminated when called. When returning, the length is
|
||||
* determined by *fnamelen.
|
||||
* Returns VALID_ flags or -1 for failure.
|
||||
* When there is an error, *fnamep is set to NULL.
|
||||
*/
|
||||
int
|
||||
modify_fname(
|
||||
char_u *src, // string with modifiers
|
||||
int tilde_file, // "~" is a file name, not $HOME
|
||||
int *usedlen, // characters after src that are used
|
||||
char_u **fnamep, // file name so far
|
||||
char_u **bufp, // buffer for allocated file name or NULL
|
||||
int *fnamelen) // length of fnamep
|
||||
{
|
||||
int valid = 0;
|
||||
char_u *tail;
|
||||
char_u *s, *p, *pbuf;
|
||||
char_u dirname[MAXPATHL];
|
||||
int c;
|
||||
int has_fullname = 0;
|
||||
#ifdef MSWIN
|
||||
char_u *fname_start = *fnamep;
|
||||
int has_shortname = 0;
|
||||
#endif
|
||||
|
||||
repeat:
|
||||
/* ":p" - full path/file_name */
|
||||
if (src[*usedlen] == ':' && src[*usedlen + 1] == 'p')
|
||||
{
|
||||
has_fullname = 1;
|
||||
|
||||
valid |= VALID_PATH;
|
||||
*usedlen += 2;
|
||||
|
||||
/* Expand "~/path" for all systems and "~user/path" for Unix and VMS */
|
||||
if ((*fnamep)[0] == '~'
|
||||
#if !defined(UNIX) && !(defined(VMS) && defined(USER_HOME))
|
||||
&& ((*fnamep)[1] == '/'
|
||||
# ifdef BACKSLASH_IN_FILENAME
|
||||
|| (*fnamep)[1] == '\\'
|
||||
# endif
|
||||
|| (*fnamep)[1] == NUL)
|
||||
#endif
|
||||
&& !(tilde_file && (*fnamep)[1] == NUL)
|
||||
)
|
||||
{
|
||||
*fnamep = expand_env_save(*fnamep);
|
||||
vim_free(*bufp); /* free any allocated file name */
|
||||
*bufp = *fnamep;
|
||||
if (*fnamep == NULL)
|
||||
return -1;
|
||||
}
|
||||
|
||||
/* When "/." or "/.." is used: force expansion to get rid of it. */
|
||||
for (p = *fnamep; *p != NUL; MB_PTR_ADV(p))
|
||||
{
|
||||
if (vim_ispathsep(*p)
|
||||
&& p[1] == '.'
|
||||
&& (p[2] == NUL
|
||||
|| vim_ispathsep(p[2])
|
||||
|| (p[2] == '.'
|
||||
&& (p[3] == NUL || vim_ispathsep(p[3])))))
|
||||
break;
|
||||
}
|
||||
|
||||
/* FullName_save() is slow, don't use it when not needed. */
|
||||
if (*p != NUL || !vim_isAbsName(*fnamep))
|
||||
{
|
||||
*fnamep = FullName_save(*fnamep, *p != NUL);
|
||||
vim_free(*bufp); /* free any allocated file name */
|
||||
*bufp = *fnamep;
|
||||
if (*fnamep == NULL)
|
||||
return -1;
|
||||
}
|
||||
|
||||
#ifdef MSWIN
|
||||
# if _WIN32_WINNT >= 0x0500
|
||||
if (vim_strchr(*fnamep, '~') != NULL)
|
||||
{
|
||||
// Expand 8.3 filename to full path. Needed to make sure the same
|
||||
// file does not have two different names.
|
||||
// Note: problem does not occur if _WIN32_WINNT < 0x0500.
|
||||
WCHAR *wfname = enc_to_utf16(*fnamep, NULL);
|
||||
WCHAR buf[_MAX_PATH];
|
||||
|
||||
if (wfname != NULL)
|
||||
{
|
||||
if (GetLongPathNameW(wfname, buf, _MAX_PATH))
|
||||
{
|
||||
char_u *p = utf16_to_enc(buf, NULL);
|
||||
|
||||
if (p != NULL)
|
||||
{
|
||||
vim_free(*bufp); // free any allocated file name
|
||||
*bufp = *fnamep = p;
|
||||
}
|
||||
}
|
||||
vim_free(wfname);
|
||||
}
|
||||
}
|
||||
# endif
|
||||
#endif
|
||||
/* Append a path separator to a directory. */
|
||||
if (mch_isdir(*fnamep))
|
||||
{
|
||||
/* Make room for one or two extra characters. */
|
||||
*fnamep = vim_strnsave(*fnamep, (int)STRLEN(*fnamep) + 2);
|
||||
vim_free(*bufp); /* free any allocated file name */
|
||||
*bufp = *fnamep;
|
||||
if (*fnamep == NULL)
|
||||
return -1;
|
||||
add_pathsep(*fnamep);
|
||||
}
|
||||
}
|
||||
|
||||
/* ":." - path relative to the current directory */
|
||||
/* ":~" - path relative to the home directory */
|
||||
/* ":8" - shortname path - postponed till after */
|
||||
while (src[*usedlen] == ':'
|
||||
&& ((c = src[*usedlen + 1]) == '.' || c == '~' || c == '8'))
|
||||
{
|
||||
*usedlen += 2;
|
||||
if (c == '8')
|
||||
{
|
||||
#ifdef MSWIN
|
||||
has_shortname = 1; /* Postpone this. */
|
||||
#endif
|
||||
continue;
|
||||
}
|
||||
pbuf = NULL;
|
||||
/* Need full path first (use expand_env() to remove a "~/") */
|
||||
if (!has_fullname)
|
||||
{
|
||||
if (c == '.' && **fnamep == '~')
|
||||
p = pbuf = expand_env_save(*fnamep);
|
||||
else
|
||||
p = pbuf = FullName_save(*fnamep, FALSE);
|
||||
}
|
||||
else
|
||||
p = *fnamep;
|
||||
|
||||
has_fullname = 0;
|
||||
|
||||
if (p != NULL)
|
||||
{
|
||||
if (c == '.')
|
||||
{
|
||||
mch_dirname(dirname, MAXPATHL);
|
||||
s = shorten_fname(p, dirname);
|
||||
if (s != NULL)
|
||||
{
|
||||
*fnamep = s;
|
||||
if (pbuf != NULL)
|
||||
{
|
||||
vim_free(*bufp); /* free any allocated file name */
|
||||
*bufp = pbuf;
|
||||
pbuf = NULL;
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
home_replace(NULL, p, dirname, MAXPATHL, TRUE);
|
||||
/* Only replace it when it starts with '~' */
|
||||
if (*dirname == '~')
|
||||
{
|
||||
s = vim_strsave(dirname);
|
||||
if (s != NULL)
|
||||
{
|
||||
*fnamep = s;
|
||||
vim_free(*bufp);
|
||||
*bufp = s;
|
||||
}
|
||||
}
|
||||
}
|
||||
vim_free(pbuf);
|
||||
}
|
||||
}
|
||||
|
||||
tail = gettail(*fnamep);
|
||||
*fnamelen = (int)STRLEN(*fnamep);
|
||||
|
||||
/* ":h" - head, remove "/file_name", can be repeated */
|
||||
/* Don't remove the first "/" or "c:\" */
|
||||
while (src[*usedlen] == ':' && src[*usedlen + 1] == 'h')
|
||||
{
|
||||
valid |= VALID_HEAD;
|
||||
*usedlen += 2;
|
||||
s = get_past_head(*fnamep);
|
||||
while (tail > s && after_pathsep(s, tail))
|
||||
MB_PTR_BACK(*fnamep, tail);
|
||||
*fnamelen = (int)(tail - *fnamep);
|
||||
#ifdef VMS
|
||||
if (*fnamelen > 0)
|
||||
*fnamelen += 1; /* the path separator is part of the path */
|
||||
#endif
|
||||
if (*fnamelen == 0)
|
||||
{
|
||||
/* Result is empty. Turn it into "." to make ":cd %:h" work. */
|
||||
p = vim_strsave((char_u *)".");
|
||||
if (p == NULL)
|
||||
return -1;
|
||||
vim_free(*bufp);
|
||||
*bufp = *fnamep = tail = p;
|
||||
*fnamelen = 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
while (tail > s && !after_pathsep(s, tail))
|
||||
MB_PTR_BACK(*fnamep, tail);
|
||||
}
|
||||
}
|
||||
|
||||
/* ":8" - shortname */
|
||||
if (src[*usedlen] == ':' && src[*usedlen + 1] == '8')
|
||||
{
|
||||
*usedlen += 2;
|
||||
#ifdef MSWIN
|
||||
has_shortname = 1;
|
||||
#endif
|
||||
}
|
||||
|
||||
#ifdef MSWIN
|
||||
/*
|
||||
* Handle ":8" after we have done 'heads' and before we do 'tails'.
|
||||
*/
|
||||
if (has_shortname)
|
||||
{
|
||||
/* Copy the string if it is shortened by :h and when it wasn't copied
|
||||
* yet, because we are going to change it in place. Avoids changing
|
||||
* the buffer name for "%:8". */
|
||||
if (*fnamelen < (int)STRLEN(*fnamep) || *fnamep == fname_start)
|
||||
{
|
||||
p = vim_strnsave(*fnamep, *fnamelen);
|
||||
if (p == NULL)
|
||||
return -1;
|
||||
vim_free(*bufp);
|
||||
*bufp = *fnamep = p;
|
||||
}
|
||||
|
||||
/* Split into two implementations - makes it easier. First is where
|
||||
* there isn't a full name already, second is where there is. */
|
||||
if (!has_fullname && !vim_isAbsName(*fnamep))
|
||||
{
|
||||
if (shortpath_for_partial(fnamep, bufp, fnamelen) == FAIL)
|
||||
return -1;
|
||||
}
|
||||
else
|
||||
{
|
||||
int l = *fnamelen;
|
||||
|
||||
/* Simple case, already have the full-name.
|
||||
* Nearly always shorter, so try first time. */
|
||||
if (get_short_pathname(fnamep, bufp, &l) == FAIL)
|
||||
return -1;
|
||||
|
||||
if (l == 0)
|
||||
{
|
||||
/* Couldn't find the filename, search the paths. */
|
||||
l = *fnamelen;
|
||||
if (shortpath_for_invalid_fname(fnamep, bufp, &l) == FAIL)
|
||||
return -1;
|
||||
}
|
||||
*fnamelen = l;
|
||||
}
|
||||
}
|
||||
#endif // MSWIN
|
||||
|
||||
/* ":t" - tail, just the basename */
|
||||
if (src[*usedlen] == ':' && src[*usedlen + 1] == 't')
|
||||
{
|
||||
*usedlen += 2;
|
||||
*fnamelen -= (int)(tail - *fnamep);
|
||||
*fnamep = tail;
|
||||
}
|
||||
|
||||
/* ":e" - extension, can be repeated */
|
||||
/* ":r" - root, without extension, can be repeated */
|
||||
while (src[*usedlen] == ':'
|
||||
&& (src[*usedlen + 1] == 'e' || src[*usedlen + 1] == 'r'))
|
||||
{
|
||||
/* find a '.' in the tail:
|
||||
* - for second :e: before the current fname
|
||||
* - otherwise: The last '.'
|
||||
*/
|
||||
if (src[*usedlen + 1] == 'e' && *fnamep > tail)
|
||||
s = *fnamep - 2;
|
||||
else
|
||||
s = *fnamep + *fnamelen - 1;
|
||||
for ( ; s > tail; --s)
|
||||
if (s[0] == '.')
|
||||
break;
|
||||
if (src[*usedlen + 1] == 'e') /* :e */
|
||||
{
|
||||
if (s > tail)
|
||||
{
|
||||
*fnamelen += (int)(*fnamep - (s + 1));
|
||||
*fnamep = s + 1;
|
||||
#ifdef VMS
|
||||
/* cut version from the extension */
|
||||
s = *fnamep + *fnamelen - 1;
|
||||
for ( ; s > *fnamep; --s)
|
||||
if (s[0] == ';')
|
||||
break;
|
||||
if (s > *fnamep)
|
||||
*fnamelen = s - *fnamep;
|
||||
#endif
|
||||
}
|
||||
else if (*fnamep <= tail)
|
||||
*fnamelen = 0;
|
||||
}
|
||||
else /* :r */
|
||||
{
|
||||
if (s > tail) /* remove one extension */
|
||||
*fnamelen = (int)(s - *fnamep);
|
||||
}
|
||||
*usedlen += 2;
|
||||
}
|
||||
|
||||
/* ":s?pat?foo?" - substitute */
|
||||
/* ":gs?pat?foo?" - global substitute */
|
||||
if (src[*usedlen] == ':'
|
||||
&& (src[*usedlen + 1] == 's'
|
||||
|| (src[*usedlen + 1] == 'g' && src[*usedlen + 2] == 's')))
|
||||
{
|
||||
char_u *str;
|
||||
char_u *pat;
|
||||
char_u *sub;
|
||||
int sep;
|
||||
char_u *flags;
|
||||
int didit = FALSE;
|
||||
|
||||
flags = (char_u *)"";
|
||||
s = src + *usedlen + 2;
|
||||
if (src[*usedlen + 1] == 'g')
|
||||
{
|
||||
flags = (char_u *)"g";
|
||||
++s;
|
||||
}
|
||||
|
||||
sep = *s++;
|
||||
if (sep)
|
||||
{
|
||||
/* find end of pattern */
|
||||
p = vim_strchr(s, sep);
|
||||
if (p != NULL)
|
||||
{
|
||||
pat = vim_strnsave(s, (int)(p - s));
|
||||
if (pat != NULL)
|
||||
{
|
||||
s = p + 1;
|
||||
/* find end of substitution */
|
||||
p = vim_strchr(s, sep);
|
||||
if (p != NULL)
|
||||
{
|
||||
sub = vim_strnsave(s, (int)(p - s));
|
||||
str = vim_strnsave(*fnamep, *fnamelen);
|
||||
if (sub != NULL && str != NULL)
|
||||
{
|
||||
*usedlen = (int)(p + 1 - src);
|
||||
s = do_string_sub(str, pat, sub, NULL, flags);
|
||||
if (s != NULL)
|
||||
{
|
||||
*fnamep = s;
|
||||
*fnamelen = (int)STRLEN(s);
|
||||
vim_free(*bufp);
|
||||
*bufp = s;
|
||||
didit = TRUE;
|
||||
}
|
||||
}
|
||||
vim_free(sub);
|
||||
vim_free(str);
|
||||
}
|
||||
vim_free(pat);
|
||||
}
|
||||
}
|
||||
/* after using ":s", repeat all the modifiers */
|
||||
if (didit)
|
||||
goto repeat;
|
||||
}
|
||||
}
|
||||
|
||||
if (src[*usedlen] == ':' && src[*usedlen + 1] == 'S')
|
||||
{
|
||||
/* vim_strsave_shellescape() needs a NUL terminated string. */
|
||||
c = (*fnamep)[*fnamelen];
|
||||
if (c != NUL)
|
||||
(*fnamep)[*fnamelen] = NUL;
|
||||
p = vim_strsave_shellescape(*fnamep, FALSE, FALSE);
|
||||
if (c != NUL)
|
||||
(*fnamep)[*fnamelen] = c;
|
||||
if (p == NULL)
|
||||
return -1;
|
||||
vim_free(*bufp);
|
||||
*bufp = *fnamep = p;
|
||||
*fnamelen = (int)STRLEN(p);
|
||||
*usedlen += 2;
|
||||
}
|
||||
|
||||
return valid;
|
||||
}
|
||||
#endif // FEAT_EVAL
|
||||
|
||||
/*
|
||||
* Perform a substitution on "str" with pattern "pat" and substitute "sub".
|
||||
@ -7134,5 +6491,3 @@ do_string_sub(
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
#endif /* defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL) */
|
||||
|
1358
src/evalfunc.c
1358
src/evalfunc.c
File diff suppressed because it is too large
Load Diff
@ -7975,10 +7975,8 @@ eval_vars(
|
||||
buf_T *buf;
|
||||
int valid = VALID_HEAD + VALID_PATH; /* assume valid result */
|
||||
int spec_idx;
|
||||
#ifdef FEAT_MODIFY_FNAME
|
||||
int tilde_file = FALSE;
|
||||
int skip_mod = FALSE;
|
||||
#endif
|
||||
char_u strbuf[30];
|
||||
|
||||
*errormsg = NULL;
|
||||
@ -8043,9 +8041,7 @@ eval_vars(
|
||||
else
|
||||
{
|
||||
result = curbuf->b_fname;
|
||||
#ifdef FEAT_MODIFY_FNAME
|
||||
tilde_file = STRCMP(result, "~") == 0;
|
||||
#endif
|
||||
}
|
||||
break;
|
||||
|
||||
@ -8057,9 +8053,7 @@ eval_vars(
|
||||
*usedlen = 2;
|
||||
if (escaped != NULL)
|
||||
*escaped = TRUE;
|
||||
#ifdef FEAT_MODIFY_FNAME
|
||||
skip_mod = TRUE;
|
||||
#endif
|
||||
break;
|
||||
}
|
||||
s = src + 1;
|
||||
@ -8112,9 +8106,7 @@ eval_vars(
|
||||
else
|
||||
{
|
||||
result = buf->b_fname;
|
||||
#ifdef FEAT_MODIFY_FNAME
|
||||
tilde_file = STRCMP(result, "~") == 0;
|
||||
#endif
|
||||
}
|
||||
}
|
||||
break;
|
||||
@ -8221,7 +8213,6 @@ eval_vars(
|
||||
if ((s = vim_strrchr(result, '.')) != NULL && s >= gettail(result))
|
||||
resultlen = (int)(s - result);
|
||||
}
|
||||
#ifdef FEAT_MODIFY_FNAME
|
||||
else if (!skip_mod)
|
||||
{
|
||||
valid |= modify_fname(src, tilde_file, usedlen, &result, &resultbuf,
|
||||
@ -8232,7 +8223,6 @@ eval_vars(
|
||||
return NULL;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
if (resultlen == 0 || valid != VALID_HEAD + VALID_PATH)
|
||||
|
@ -107,6 +107,7 @@
|
||||
* +multi_byte Generic multi-byte character handling.
|
||||
* +cmdline_compl completion of mappings/abbreviations in cmdline mode.
|
||||
* +insert_expand CTRL-N/CTRL-P/CTRL-X in insert mode.
|
||||
* +modify_fname modifiers for file name. E.g., "%:p:h".
|
||||
*
|
||||
* Obsolete:
|
||||
* +tag_old_static Old style static tags: "file:tag file ..".
|
||||
@ -353,13 +354,6 @@
|
||||
# define FEAT_POSTSCRIPT
|
||||
#endif
|
||||
|
||||
/*
|
||||
* +modify_fname modifiers for file name. E.g., "%:p:h".
|
||||
*/
|
||||
#ifdef FEAT_NORMAL
|
||||
# define FEAT_MODIFY_FNAME
|
||||
#endif
|
||||
|
||||
/*
|
||||
* +diff Displaying diffs in a nice way.
|
||||
* Requires +windows and +autocmd.
|
||||
|
2138
src/filepath.c
Normal file
2138
src/filepath.c
Normal file
File diff suppressed because it is too large
Load Diff
@ -2815,3 +2815,19 @@ simplify_filename(char_u *filename)
|
||||
} while (*p != NUL);
|
||||
#endif // !AMIGA
|
||||
}
|
||||
|
||||
#if defined(FEAT_EVAL) || defined(PROTO)
|
||||
/*
|
||||
* "simplify()" function
|
||||
*/
|
||||
void
|
||||
f_simplify(typval_T *argvars, typval_T *rettv)
|
||||
{
|
||||
char_u *p;
|
||||
|
||||
p = tv_get_string(&argvars[0]);
|
||||
rettv->vval.v_string = vim_strsave(p);
|
||||
simplify_filename(rettv->vval.v_string); /* simplify in place */
|
||||
rettv->v_type = VAR_STRING;
|
||||
}
|
||||
#endif // FEAT_EVAL
|
||||
|
@ -492,18 +492,15 @@ cs_add_common(
|
||||
char *fname2 = NULL;
|
||||
char *ppath = NULL;
|
||||
int i;
|
||||
#ifdef FEAT_MODIFY_FNAME
|
||||
int len;
|
||||
int usedlen = 0;
|
||||
char_u *fbuf = NULL;
|
||||
#endif
|
||||
|
||||
/* get the filename (arg1), expand it, and try to stat it */
|
||||
if ((fname = alloc(MAXPATHL + 1)) == NULL)
|
||||
goto add_err;
|
||||
|
||||
expand_env((char_u *)arg1, (char_u *)fname, MAXPATHL);
|
||||
#ifdef FEAT_MODIFY_FNAME
|
||||
len = (int)STRLEN(fname);
|
||||
fbuf = (char_u *)fname;
|
||||
(void)modify_fname((char_u *)":p", FALSE, &usedlen,
|
||||
@ -512,7 +509,7 @@ cs_add_common(
|
||||
goto add_err;
|
||||
fname = (char *)vim_strnsave((char_u *)fname, len);
|
||||
vim_free(fbuf);
|
||||
#endif
|
||||
|
||||
ret = mch_stat(fname, &statbuf);
|
||||
if (ret < 0)
|
||||
{
|
||||
|
162
src/message.c
162
src/message.c
@ -3957,168 +3957,6 @@ vim_dialog_yesnoallcancel(
|
||||
|
||||
#endif /* FEAT_GUI_DIALOG || FEAT_CON_DIALOG */
|
||||
|
||||
#if defined(FEAT_BROWSE) || defined(PROTO)
|
||||
/*
|
||||
* Generic browse function. Calls gui_mch_browse() when possible.
|
||||
* Later this may pop-up a non-GUI file selector (external command?).
|
||||
*/
|
||||
char_u *
|
||||
do_browse(
|
||||
int flags, /* BROWSE_SAVE and BROWSE_DIR */
|
||||
char_u *title, /* title for the window */
|
||||
char_u *dflt, /* default file name (may include directory) */
|
||||
char_u *ext, /* extension added */
|
||||
char_u *initdir, /* initial directory, NULL for current dir or
|
||||
when using path from "dflt" */
|
||||
char_u *filter, /* file name filter */
|
||||
buf_T *buf) /* buffer to read/write for */
|
||||
{
|
||||
char_u *fname;
|
||||
static char_u *last_dir = NULL; /* last used directory */
|
||||
char_u *tofree = NULL;
|
||||
int save_browse = cmdmod.browse;
|
||||
|
||||
/* Must turn off browse to avoid that autocommands will get the
|
||||
* flag too! */
|
||||
cmdmod.browse = FALSE;
|
||||
|
||||
if (title == NULL || *title == NUL)
|
||||
{
|
||||
if (flags & BROWSE_DIR)
|
||||
title = (char_u *)_("Select Directory dialog");
|
||||
else if (flags & BROWSE_SAVE)
|
||||
title = (char_u *)_("Save File dialog");
|
||||
else
|
||||
title = (char_u *)_("Open File dialog");
|
||||
}
|
||||
|
||||
/* When no directory specified, use default file name, default dir, buffer
|
||||
* dir, last dir or current dir */
|
||||
if ((initdir == NULL || *initdir == NUL) && dflt != NULL && *dflt != NUL)
|
||||
{
|
||||
if (mch_isdir(dflt)) /* default file name is a directory */
|
||||
{
|
||||
initdir = dflt;
|
||||
dflt = NULL;
|
||||
}
|
||||
else if (gettail(dflt) != dflt) /* default file name includes a path */
|
||||
{
|
||||
tofree = vim_strsave(dflt);
|
||||
if (tofree != NULL)
|
||||
{
|
||||
initdir = tofree;
|
||||
*gettail(initdir) = NUL;
|
||||
dflt = gettail(dflt);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (initdir == NULL || *initdir == NUL)
|
||||
{
|
||||
/* When 'browsedir' is a directory, use it */
|
||||
if (STRCMP(p_bsdir, "last") != 0
|
||||
&& STRCMP(p_bsdir, "buffer") != 0
|
||||
&& STRCMP(p_bsdir, "current") != 0
|
||||
&& mch_isdir(p_bsdir))
|
||||
initdir = p_bsdir;
|
||||
/* When saving or 'browsedir' is "buffer", use buffer fname */
|
||||
else if (((flags & BROWSE_SAVE) || *p_bsdir == 'b')
|
||||
&& buf != NULL && buf->b_ffname != NULL)
|
||||
{
|
||||
if (dflt == NULL || *dflt == NUL)
|
||||
dflt = gettail(curbuf->b_ffname);
|
||||
tofree = vim_strsave(curbuf->b_ffname);
|
||||
if (tofree != NULL)
|
||||
{
|
||||
initdir = tofree;
|
||||
*gettail(initdir) = NUL;
|
||||
}
|
||||
}
|
||||
/* When 'browsedir' is "last", use dir from last browse */
|
||||
else if (*p_bsdir == 'l')
|
||||
initdir = last_dir;
|
||||
/* When 'browsedir is "current", use current directory. This is the
|
||||
* default already, leave initdir empty. */
|
||||
}
|
||||
|
||||
# ifdef FEAT_GUI
|
||||
if (gui.in_use) /* when this changes, also adjust f_has()! */
|
||||
{
|
||||
if (filter == NULL
|
||||
# ifdef FEAT_EVAL
|
||||
&& (filter = get_var_value((char_u *)"b:browsefilter")) == NULL
|
||||
&& (filter = get_var_value((char_u *)"g:browsefilter")) == NULL
|
||||
# endif
|
||||
)
|
||||
filter = BROWSE_FILTER_DEFAULT;
|
||||
if (flags & BROWSE_DIR)
|
||||
{
|
||||
# if defined(FEAT_GUI_GTK) || defined(MSWIN)
|
||||
/* For systems that have a directory dialog. */
|
||||
fname = gui_mch_browsedir(title, initdir);
|
||||
# else
|
||||
/* Generic solution for selecting a directory: select a file and
|
||||
* remove the file name. */
|
||||
fname = gui_mch_browse(0, title, dflt, ext, initdir, (char_u *)"");
|
||||
# endif
|
||||
# if !defined(FEAT_GUI_GTK)
|
||||
/* Win32 adds a dummy file name, others return an arbitrary file
|
||||
* name. GTK+ 2 returns only the directory, */
|
||||
if (fname != NULL && *fname != NUL && !mch_isdir(fname))
|
||||
{
|
||||
/* Remove the file name. */
|
||||
char_u *tail = gettail_sep(fname);
|
||||
|
||||
if (tail == fname)
|
||||
*tail++ = '.'; /* use current dir */
|
||||
*tail = NUL;
|
||||
}
|
||||
# endif
|
||||
}
|
||||
else
|
||||
fname = gui_mch_browse(flags & BROWSE_SAVE,
|
||||
title, dflt, ext, initdir, (char_u *)_(filter));
|
||||
|
||||
/* We hang around in the dialog for a while, the user might do some
|
||||
* things to our files. The Win32 dialog allows deleting or renaming
|
||||
* a file, check timestamps. */
|
||||
need_check_timestamps = TRUE;
|
||||
did_check_timestamps = FALSE;
|
||||
}
|
||||
else
|
||||
# endif
|
||||
{
|
||||
/* TODO: non-GUI file selector here */
|
||||
emsg(_("E338: Sorry, no file browser in console mode"));
|
||||
fname = NULL;
|
||||
}
|
||||
|
||||
/* keep the directory for next time */
|
||||
if (fname != NULL)
|
||||
{
|
||||
vim_free(last_dir);
|
||||
last_dir = vim_strsave(fname);
|
||||
if (last_dir != NULL && !(flags & BROWSE_DIR))
|
||||
{
|
||||
*gettail(last_dir) = NUL;
|
||||
if (*last_dir == NUL)
|
||||
{
|
||||
/* filename only returned, must be in current dir */
|
||||
vim_free(last_dir);
|
||||
last_dir = alloc(MAXPATHL);
|
||||
if (last_dir != NULL)
|
||||
mch_dirname(last_dir, MAXPATHL);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
vim_free(tofree);
|
||||
cmdmod.browse = save_browse;
|
||||
|
||||
return fname;
|
||||
}
|
||||
#endif
|
||||
|
||||
#if defined(FEAT_EVAL)
|
||||
static char *e_printf = N_("E766: Insufficient arguments for printf()");
|
||||
|
||||
|
@ -2582,7 +2582,6 @@ home_replace(
|
||||
if (homedir_env != NULL && *homedir_env == NUL)
|
||||
homedir_env = NULL;
|
||||
|
||||
#if defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL)
|
||||
if (homedir_env != NULL && *homedir_env == '~')
|
||||
{
|
||||
int usedlen = 0;
|
||||
@ -2597,7 +2596,6 @@ home_replace(
|
||||
/* Remove the trailing / that is added to a directory. */
|
||||
homedir_env[flen - 1] = NUL;
|
||||
}
|
||||
#endif
|
||||
|
||||
if (homedir_env != NULL)
|
||||
envlen = STRLEN(homedir_env);
|
||||
|
@ -84,6 +84,7 @@ extern int _stricoll(char *a, char *b);
|
||||
# include "ex_eval.pro"
|
||||
# include "ex_getln.pro"
|
||||
# include "fileio.pro"
|
||||
# include "filepath.pro"
|
||||
# include "findfile.pro"
|
||||
# include "fold.pro"
|
||||
# include "getchar.pro"
|
||||
|
@ -74,6 +74,5 @@ char_u *find_option_end(char_u **arg, int *opt_flags);
|
||||
void last_set_msg(sctx_T script_ctx);
|
||||
int typval_compare(typval_T *typ1, typval_T *typ2, exptype_T type, int type_is, int ic);
|
||||
char_u *typval_tostring(typval_T *arg);
|
||||
int modify_fname(char_u *src, int tilde_file, int *usedlen, char_u **fnamep, char_u **bufp, int *fnamelen);
|
||||
char_u *do_string_sub(char_u *str, char_u *pat, char_u *sub, typval_T *expr, char_u *flags);
|
||||
/* vim: set ft=c : */
|
||||
|
@ -9,6 +9,8 @@ int eval_charconvert(char_u *enc_from, char_u *enc_to, char_u *fname_from, char_
|
||||
int eval_printexpr(char_u *fname, char_u *args);
|
||||
void eval_diff(char_u *origfile, char_u *newfile, char_u *outfile);
|
||||
void eval_patch(char_u *origfile, char_u *difffile, char_u *outfile);
|
||||
list_T *eval_spell_expr(char_u *badword, char_u *expr);
|
||||
int get_spellword(list_T *list, char_u **pp);
|
||||
void prepare_vimvar(int idx, typval_T *save_tv);
|
||||
void restore_vimvar(int idx, typval_T *save_tv);
|
||||
void ex_let(exarg_T *eap);
|
||||
|
31
src/proto/filepath.pro
Normal file
31
src/proto/filepath.pro
Normal file
@ -0,0 +1,31 @@
|
||||
/* filepath.c */
|
||||
int modify_fname(char_u *src, int tilde_file, int *usedlen, char_u **fnamep, char_u **bufp, int *fnamelen);
|
||||
void f_chdir(typval_T *argvars, typval_T *rettv);
|
||||
void f_delete(typval_T *argvars, typval_T *rettv);
|
||||
void f_executable(typval_T *argvars, typval_T *rettv);
|
||||
void f_exepath(typval_T *argvars, typval_T *rettv);
|
||||
void f_filereadable(typval_T *argvars, typval_T *rettv);
|
||||
void f_filewritable(typval_T *argvars, typval_T *rettv);
|
||||
void findfilendir(typval_T *argvars, typval_T *rettv, int find_what);
|
||||
void f_finddir(typval_T *argvars, typval_T *rettv);
|
||||
void f_findfile(typval_T *argvars, typval_T *rettv);
|
||||
void f_fnamemodify(typval_T *argvars, typval_T *rettv);
|
||||
void f_getcwd(typval_T *argvars, typval_T *rettv);
|
||||
void f_getfperm(typval_T *argvars, typval_T *rettv);
|
||||
void f_getfsize(typval_T *argvars, typval_T *rettv);
|
||||
void f_getftime(typval_T *argvars, typval_T *rettv);
|
||||
void f_getftype(typval_T *argvars, typval_T *rettv);
|
||||
void f_glob(typval_T *argvars, typval_T *rettv);
|
||||
void f_glob2regpat(typval_T *argvars, typval_T *rettv);
|
||||
void f_globpath(typval_T *argvars, typval_T *rettv);
|
||||
void f_isdirectory(typval_T *argvars, typval_T *rettv);
|
||||
void f_mkdir(typval_T *argvars, typval_T *rettv);
|
||||
void f_readdir(typval_T *argvars, typval_T *rettv);
|
||||
void f_readfile(typval_T *argvars, typval_T *rettv);
|
||||
void f_resolve(typval_T *argvars, typval_T *rettv);
|
||||
void f_tempname(typval_T *argvars, typval_T *rettv);
|
||||
void f_writefile(typval_T *argvars, typval_T *rettv);
|
||||
char_u *do_browse(int flags, char_u *title, char_u *dflt, char_u *ext, char_u *initdir, char_u *filter, buf_T *buf);
|
||||
void f_browse(typval_T *argvars, typval_T *rettv);
|
||||
void f_browsedir(typval_T *argvars, typval_T *rettv);
|
||||
/* vim: set ft=c : */
|
@ -15,4 +15,5 @@ int vim_ispathlistsep(int c);
|
||||
void uniquefy_paths(garray_T *gap, char_u *pattern);
|
||||
int expand_in_path(garray_T *gap, char_u *pattern, int flags);
|
||||
void simplify_filename(char_u *filename);
|
||||
void f_simplify(typval_T *argvars, typval_T *rettv);
|
||||
/* vim: set ft=c : */
|
||||
|
@ -73,5 +73,4 @@ int do_dialog(int type, char_u *title, char_u *message, char_u *buttons, int dfl
|
||||
int vim_dialog_yesno(int type, char_u *title, char_u *message, int dflt);
|
||||
int vim_dialog_yesnocancel(int type, char_u *title, char_u *message, int dflt);
|
||||
int vim_dialog_yesnoallcancel(int type, char_u *title, char_u *message, int dflt);
|
||||
char_u *do_browse(int flags, char_u *title, char_u *dflt, char_u *ext, char_u *initdir, char_u *filter, buf_T *buf);
|
||||
/* vim: set ft=c : */
|
||||
|
@ -7210,7 +7210,7 @@ typedef struct {
|
||||
static regsubmatch_T rsm; /* can only be used when can_f_submatch is TRUE */
|
||||
#endif
|
||||
|
||||
#if defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL) || defined(PROTO)
|
||||
#ifdef FEAT_EVAL
|
||||
|
||||
/*
|
||||
* Put the submatches in "argv[0]" which is a list passed into call_func() by
|
||||
@ -7254,6 +7254,7 @@ clear_submatch_list(staticList10_T *sl)
|
||||
for (i = 0; i < 10; ++i)
|
||||
vim_free(sl->sl_items[i].li_tv.vval.v_string);
|
||||
}
|
||||
#endif
|
||||
|
||||
/*
|
||||
* vim_regsub() - perform substitutions after a vim_regexec() or
|
||||
@ -7305,7 +7306,6 @@ vim_regsub(
|
||||
|
||||
return result;
|
||||
}
|
||||
#endif
|
||||
|
||||
int
|
||||
vim_regsub_multi(
|
||||
@ -8206,8 +8206,6 @@ vim_regexec(regmatch_T *rmp, char_u *line, colnr_T col)
|
||||
return vim_regexec_string(rmp, line, col, FALSE);
|
||||
}
|
||||
|
||||
#if defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL) \
|
||||
|| defined(FIND_REPLACE_DIALOG) || defined(PROTO)
|
||||
/*
|
||||
* Like vim_regexec(), but consider a "\n" in "line" to be a line break.
|
||||
* Note: "rmp->regprog" may be freed and changed.
|
||||
@ -8218,7 +8216,6 @@ vim_regexec_nl(regmatch_T *rmp, char_u *line, colnr_T col)
|
||||
{
|
||||
return vim_regexec_string(rmp, line, col, TRUE);
|
||||
}
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Match a regexp against multiple lines.
|
||||
|
@ -362,11 +362,7 @@ static char *(features[]) =
|
||||
#else
|
||||
"-mksession",
|
||||
#endif
|
||||
#ifdef FEAT_MODIFY_FNAME
|
||||
"+modify_fname",
|
||||
#else
|
||||
"-modify_fname",
|
||||
#endif
|
||||
#ifdef FEAT_MOUSE
|
||||
"+mouse",
|
||||
# ifdef FEAT_MOUSESHAPE
|
||||
@ -761,6 +757,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
1979,
|
||||
/**/
|
||||
1978,
|
||||
/**/
|
||||
|
Reference in New Issue
Block a user