2016-08-29 22:49:24 +02:00
|
|
|
/* vi:set ts=8 sts=4 sw=4 noet:
|
2004-06-13 20:20:40 +00:00
|
|
|
*
|
|
|
|
* VIM - Vi IMproved by Bram Moolenaar
|
|
|
|
*
|
|
|
|
* Do ":help uganda" in Vim to read copying and usage conditions.
|
|
|
|
* Do ":help credits" in Vim to see a list of people who contributed.
|
|
|
|
* See README.txt for an overview of the Vim source code.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* misc1.c: functions that didn't seem to fit elsewhere
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "vim.h"
|
|
|
|
#include "version.h"
|
|
|
|
|
2019-02-17 17:44:42 +01:00
|
|
|
#if defined(FEAT_CMDL_COMPL) && defined(MSWIN)
|
2018-06-19 18:58:07 +02:00
|
|
|
# include <lm.h>
|
|
|
|
#endif
|
|
|
|
|
2016-01-29 22:36:45 +01:00
|
|
|
static char_u *vim_version_dir(char_u *vimdir);
|
|
|
|
static char_u *remove_tail(char_u *p, char_u *pend, char_u *name);
|
2004-06-13 20:20:40 +00:00
|
|
|
|
2019-02-13 23:13:28 +01:00
|
|
|
#define URL_SLASH 1 /* path_is_url() has found "://" */
|
|
|
|
#define URL_BACKSLASH 2 /* path_is_url() has found ":\\" */
|
|
|
|
|
2012-08-15 14:05:05 +02:00
|
|
|
/* All user names (for ~user completion as done by shell). */
|
|
|
|
#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
|
|
|
|
static garray_T ga_users;
|
|
|
|
#endif
|
|
|
|
|
2004-06-13 20:20:40 +00:00
|
|
|
/*
|
|
|
|
* Count the size (in window cells) of the indent in the current line.
|
|
|
|
*/
|
|
|
|
int
|
2016-01-30 19:39:49 +01:00
|
|
|
get_indent(void)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
2018-06-23 19:23:02 +02:00
|
|
|
#ifdef FEAT_VARTABS
|
|
|
|
return get_indent_str_vtab(ml_get_curline(), (int)curbuf->b_p_ts,
|
|
|
|
curbuf->b_p_vts_array, FALSE);
|
|
|
|
#else
|
2014-06-25 14:39:50 +02:00
|
|
|
return get_indent_str(ml_get_curline(), (int)curbuf->b_p_ts, FALSE);
|
2018-06-23 19:23:02 +02:00
|
|
|
#endif
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Count the size (in window cells) of the indent in line "lnum".
|
|
|
|
*/
|
|
|
|
int
|
2016-01-30 19:39:49 +01:00
|
|
|
get_indent_lnum(linenr_T lnum)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
2018-06-23 19:23:02 +02:00
|
|
|
#ifdef FEAT_VARTABS
|
|
|
|
return get_indent_str_vtab(ml_get(lnum), (int)curbuf->b_p_ts,
|
|
|
|
curbuf->b_p_vts_array, FALSE);
|
|
|
|
#else
|
2014-06-25 14:39:50 +02:00
|
|
|
return get_indent_str(ml_get(lnum), (int)curbuf->b_p_ts, FALSE);
|
2018-06-23 19:23:02 +02:00
|
|
|
#endif
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(FEAT_FOLDING) || defined(PROTO)
|
|
|
|
/*
|
|
|
|
* Count the size (in window cells) of the indent in line "lnum" of buffer
|
|
|
|
* "buf".
|
|
|
|
*/
|
|
|
|
int
|
2016-01-30 19:39:49 +01:00
|
|
|
get_indent_buf(buf_T *buf, linenr_T lnum)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
2018-06-23 19:23:02 +02:00
|
|
|
#ifdef FEAT_VARTABS
|
|
|
|
return get_indent_str_vtab(ml_get_buf(buf, lnum, FALSE),
|
|
|
|
(int)curbuf->b_p_ts, buf->b_p_vts_array, FALSE);
|
|
|
|
#else
|
2014-06-25 14:39:50 +02:00
|
|
|
return get_indent_str(ml_get_buf(buf, lnum, FALSE), (int)buf->b_p_ts, FALSE);
|
2018-06-23 19:23:02 +02:00
|
|
|
#endif
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* count the size (in window cells) of the indent in line "ptr", with
|
|
|
|
* 'tabstop' at "ts"
|
|
|
|
*/
|
2005-02-12 14:29:27 +00:00
|
|
|
int
|
2016-01-30 19:39:49 +01:00
|
|
|
get_indent_str(
|
|
|
|
char_u *ptr,
|
|
|
|
int ts,
|
|
|
|
int list) /* if TRUE, count only screen size for tabs */
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
int count = 0;
|
|
|
|
|
|
|
|
for ( ; *ptr; ++ptr)
|
|
|
|
{
|
2014-06-25 14:39:50 +02:00
|
|
|
if (*ptr == TAB)
|
|
|
|
{
|
|
|
|
if (!list || lcs_tab1) /* count a tab for what it is worth */
|
|
|
|
count += ts - (count % ts);
|
|
|
|
else
|
2014-08-29 12:58:44 +02:00
|
|
|
/* In list mode, when tab is not set, count screen char width
|
|
|
|
* for Tab, displays: ^I */
|
2014-06-25 14:39:50 +02:00
|
|
|
count += ptr2cells(ptr);
|
|
|
|
}
|
2004-06-13 20:20:40 +00:00
|
|
|
else if (*ptr == ' ')
|
|
|
|
++count; /* count a space for one */
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
2005-02-12 14:29:27 +00:00
|
|
|
return count;
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
|
2018-06-23 19:23:02 +02:00
|
|
|
#ifdef FEAT_VARTABS
|
|
|
|
/*
|
|
|
|
* Count the size (in window cells) of the indent in line "ptr", using
|
|
|
|
* variable tabstops.
|
|
|
|
* if "list" is TRUE, count only screen size for tabs.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
get_indent_str_vtab(char_u *ptr, int ts, int *vts, int list)
|
|
|
|
{
|
|
|
|
int count = 0;
|
|
|
|
|
|
|
|
for ( ; *ptr; ++ptr)
|
|
|
|
{
|
|
|
|
if (*ptr == TAB) /* count a tab for what it is worth */
|
|
|
|
{
|
|
|
|
if (!list || lcs_tab1)
|
|
|
|
count += tabstop_padding(count, ts, vts);
|
|
|
|
else
|
|
|
|
/* In list mode, when tab is not set, count screen char width
|
|
|
|
* for Tab, displays: ^I */
|
|
|
|
count += ptr2cells(ptr);
|
|
|
|
}
|
|
|
|
else if (*ptr == ' ')
|
|
|
|
++count; /* count a space for one */
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2004-06-13 20:20:40 +00:00
|
|
|
/*
|
|
|
|
* Set the indent of the current line.
|
|
|
|
* Leaves the cursor on the first non-blank in the line.
|
|
|
|
* Caller must take care of undo.
|
|
|
|
* "flags":
|
|
|
|
* SIN_CHANGED: call changed_bytes() if the line was changed.
|
|
|
|
* SIN_INSERT: insert the indent in front of the line.
|
|
|
|
* SIN_UNDO: save line for undo before changing it.
|
|
|
|
* Returns TRUE if the line was changed.
|
|
|
|
*/
|
|
|
|
int
|
2016-01-30 19:39:49 +01:00
|
|
|
set_indent(
|
|
|
|
int size, /* measured in spaces */
|
|
|
|
int flags)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
char_u *p;
|
|
|
|
char_u *newline;
|
|
|
|
char_u *oldline;
|
|
|
|
char_u *s;
|
|
|
|
int todo;
|
2007-07-24 13:26:15 +00:00
|
|
|
int ind_len; /* measured in characters */
|
2004-06-13 20:20:40 +00:00
|
|
|
int line_len;
|
|
|
|
int doit = FALSE;
|
2007-07-24 13:26:15 +00:00
|
|
|
int ind_done = 0; /* measured in spaces */
|
2018-06-23 19:23:02 +02:00
|
|
|
#ifdef FEAT_VARTABS
|
|
|
|
int ind_col = 0;
|
|
|
|
#endif
|
2004-06-13 20:20:40 +00:00
|
|
|
int tab_pad;
|
2005-03-18 20:27:04 +00:00
|
|
|
int retval = FALSE;
|
2007-08-14 20:16:42 +00:00
|
|
|
int orig_char_len = -1; /* number of initial whitespace chars when
|
2007-07-24 13:26:15 +00:00
|
|
|
'et' and 'pi' are both set */
|
2004-06-13 20:20:40 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* First check if there is anything to do and compute the number of
|
|
|
|
* characters needed for the indent.
|
|
|
|
*/
|
|
|
|
todo = size;
|
|
|
|
ind_len = 0;
|
|
|
|
p = oldline = ml_get_curline();
|
|
|
|
|
|
|
|
/* Calculate the buffer size for the new indent, and check to see if it
|
|
|
|
* isn't already set */
|
|
|
|
|
2007-07-24 13:26:15 +00:00
|
|
|
/* if 'expandtab' isn't set: use TABs; if both 'expandtab' and
|
|
|
|
* 'preserveindent' are set count the number of characters at the
|
|
|
|
* beginning of the line to be copied */
|
|
|
|
if (!curbuf->b_p_et || (!(flags & SIN_INSERT) && curbuf->b_p_pi))
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
/* If 'preserveindent' is set then reuse as much as possible of
|
|
|
|
* the existing indent structure for the new indent */
|
|
|
|
if (!(flags & SIN_INSERT) && curbuf->b_p_pi)
|
|
|
|
{
|
|
|
|
ind_done = 0;
|
|
|
|
|
|
|
|
/* count as many characters as we can use */
|
2017-03-12 20:10:05 +01:00
|
|
|
while (todo > 0 && VIM_ISWHITE(*p))
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
if (*p == TAB)
|
|
|
|
{
|
2018-06-23 19:23:02 +02:00
|
|
|
#ifdef FEAT_VARTABS
|
|
|
|
tab_pad = tabstop_padding(ind_done, curbuf->b_p_ts,
|
|
|
|
curbuf->b_p_vts_array);
|
|
|
|
#else
|
2004-06-13 20:20:40 +00:00
|
|
|
tab_pad = (int)curbuf->b_p_ts
|
|
|
|
- (ind_done % (int)curbuf->b_p_ts);
|
2018-06-23 19:23:02 +02:00
|
|
|
#endif
|
2004-06-13 20:20:40 +00:00
|
|
|
/* stop if this tab will overshoot the target */
|
|
|
|
if (todo < tab_pad)
|
|
|
|
break;
|
|
|
|
todo -= tab_pad;
|
|
|
|
++ind_len;
|
|
|
|
ind_done += tab_pad;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
--todo;
|
|
|
|
++ind_len;
|
|
|
|
++ind_done;
|
|
|
|
}
|
|
|
|
++p;
|
|
|
|
}
|
|
|
|
|
2018-06-23 19:23:02 +02:00
|
|
|
#ifdef FEAT_VARTABS
|
|
|
|
/* These diverge from this point. */
|
|
|
|
ind_col = ind_done;
|
|
|
|
#endif
|
2007-07-24 13:26:15 +00:00
|
|
|
/* Set initial number of whitespace chars to copy if we are
|
|
|
|
* preserving indent but expandtab is set */
|
|
|
|
if (curbuf->b_p_et)
|
|
|
|
orig_char_len = ind_len;
|
|
|
|
|
2004-06-13 20:20:40 +00:00
|
|
|
/* Fill to next tabstop with a tab, if possible */
|
2018-06-23 19:23:02 +02:00
|
|
|
#ifdef FEAT_VARTABS
|
|
|
|
tab_pad = tabstop_padding(ind_done, curbuf->b_p_ts,
|
|
|
|
curbuf->b_p_vts_array);
|
|
|
|
#else
|
2004-06-13 20:20:40 +00:00
|
|
|
tab_pad = (int)curbuf->b_p_ts - (ind_done % (int)curbuf->b_p_ts);
|
2018-06-23 19:23:02 +02:00
|
|
|
#endif
|
2007-08-14 20:16:42 +00:00
|
|
|
if (todo >= tab_pad && orig_char_len == -1)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
doit = TRUE;
|
|
|
|
todo -= tab_pad;
|
|
|
|
++ind_len;
|
|
|
|
/* ind_done += tab_pad; */
|
2018-06-23 19:23:02 +02:00
|
|
|
#ifdef FEAT_VARTABS
|
|
|
|
ind_col += tab_pad;
|
|
|
|
#endif
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* count tabs required for indent */
|
2018-06-23 19:23:02 +02:00
|
|
|
#ifdef FEAT_VARTABS
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
tab_pad = tabstop_padding(ind_col, curbuf->b_p_ts,
|
|
|
|
curbuf->b_p_vts_array);
|
|
|
|
if (todo < tab_pad)
|
|
|
|
break;
|
|
|
|
if (*p != TAB)
|
|
|
|
doit = TRUE;
|
|
|
|
else
|
|
|
|
++p;
|
|
|
|
todo -= tab_pad;
|
|
|
|
++ind_len;
|
|
|
|
ind_col += tab_pad;
|
|
|
|
}
|
|
|
|
#else
|
2004-06-13 20:20:40 +00:00
|
|
|
while (todo >= (int)curbuf->b_p_ts)
|
|
|
|
{
|
|
|
|
if (*p != TAB)
|
|
|
|
doit = TRUE;
|
|
|
|
else
|
|
|
|
++p;
|
|
|
|
todo -= (int)curbuf->b_p_ts;
|
|
|
|
++ind_len;
|
|
|
|
/* ind_done += (int)curbuf->b_p_ts; */
|
|
|
|
}
|
2018-06-23 19:23:02 +02:00
|
|
|
#endif
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
/* count spaces required for indent */
|
|
|
|
while (todo > 0)
|
|
|
|
{
|
|
|
|
if (*p != ' ')
|
|
|
|
doit = TRUE;
|
|
|
|
else
|
|
|
|
++p;
|
|
|
|
--todo;
|
|
|
|
++ind_len;
|
|
|
|
/* ++ind_done; */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Return if the indent is OK already. */
|
2017-03-12 20:10:05 +01:00
|
|
|
if (!doit && !VIM_ISWHITE(*p) && !(flags & SIN_INSERT))
|
2004-06-13 20:20:40 +00:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
/* Allocate memory for the new line. */
|
|
|
|
if (flags & SIN_INSERT)
|
|
|
|
p = oldline;
|
|
|
|
else
|
|
|
|
p = skipwhite(p);
|
|
|
|
line_len = (int)STRLEN(p) + 1;
|
2007-07-24 13:26:15 +00:00
|
|
|
|
|
|
|
/* If 'preserveindent' and 'expandtab' are both set keep the original
|
|
|
|
* characters and allocate accordingly. We will fill the rest with spaces
|
|
|
|
* after the if (!curbuf->b_p_et) below. */
|
2007-08-14 20:16:42 +00:00
|
|
|
if (orig_char_len != -1)
|
2007-07-24 13:26:15 +00:00
|
|
|
{
|
|
|
|
newline = alloc(orig_char_len + size - ind_done + line_len);
|
|
|
|
if (newline == NULL)
|
|
|
|
return FALSE;
|
2007-08-14 20:16:42 +00:00
|
|
|
todo = size - ind_done;
|
|
|
|
ind_len = orig_char_len + todo; /* Set total length of indent in
|
|
|
|
* characters, which may have been
|
|
|
|
* undercounted until now */
|
2007-07-24 13:26:15 +00:00
|
|
|
p = oldline;
|
|
|
|
s = newline;
|
|
|
|
while (orig_char_len > 0)
|
|
|
|
{
|
|
|
|
*s++ = *p++;
|
|
|
|
orig_char_len--;
|
|
|
|
}
|
2008-01-03 11:43:42 +00:00
|
|
|
|
2007-07-24 13:26:15 +00:00
|
|
|
/* Skip over any additional white space (useful when newindent is less
|
|
|
|
* than old) */
|
2017-03-12 20:10:05 +01:00
|
|
|
while (VIM_ISWHITE(*p))
|
2008-01-03 11:43:42 +00:00
|
|
|
++p;
|
2007-08-11 12:32:57 +00:00
|
|
|
|
2007-07-24 13:26:15 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
todo = size;
|
|
|
|
newline = alloc(ind_len + line_len);
|
|
|
|
if (newline == NULL)
|
|
|
|
return FALSE;
|
|
|
|
s = newline;
|
|
|
|
}
|
2004-06-13 20:20:40 +00:00
|
|
|
|
|
|
|
/* Put the characters in the new line. */
|
|
|
|
/* if 'expandtab' isn't set: use TABs */
|
|
|
|
if (!curbuf->b_p_et)
|
|
|
|
{
|
|
|
|
/* If 'preserveindent' is set then reuse as much as possible of
|
|
|
|
* the existing indent structure for the new indent */
|
|
|
|
if (!(flags & SIN_INSERT) && curbuf->b_p_pi)
|
|
|
|
{
|
|
|
|
p = oldline;
|
|
|
|
ind_done = 0;
|
|
|
|
|
2017-03-12 20:10:05 +01:00
|
|
|
while (todo > 0 && VIM_ISWHITE(*p))
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
if (*p == TAB)
|
|
|
|
{
|
2018-06-23 19:23:02 +02:00
|
|
|
#ifdef FEAT_VARTABS
|
|
|
|
tab_pad = tabstop_padding(ind_done, curbuf->b_p_ts,
|
|
|
|
curbuf->b_p_vts_array);
|
|
|
|
#else
|
2004-06-13 20:20:40 +00:00
|
|
|
tab_pad = (int)curbuf->b_p_ts
|
|
|
|
- (ind_done % (int)curbuf->b_p_ts);
|
2018-06-23 19:23:02 +02:00
|
|
|
#endif
|
2004-06-13 20:20:40 +00:00
|
|
|
/* stop if this tab will overshoot the target */
|
|
|
|
if (todo < tab_pad)
|
|
|
|
break;
|
|
|
|
todo -= tab_pad;
|
|
|
|
ind_done += tab_pad;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
--todo;
|
|
|
|
++ind_done;
|
|
|
|
}
|
|
|
|
*s++ = *p++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Fill to next tabstop with a tab, if possible */
|
2018-06-23 19:23:02 +02:00
|
|
|
#ifdef FEAT_VARTABS
|
|
|
|
tab_pad = tabstop_padding(ind_done, curbuf->b_p_ts,
|
|
|
|
curbuf->b_p_vts_array);
|
|
|
|
#else
|
2004-06-13 20:20:40 +00:00
|
|
|
tab_pad = (int)curbuf->b_p_ts - (ind_done % (int)curbuf->b_p_ts);
|
2018-06-23 19:23:02 +02:00
|
|
|
#endif
|
2004-06-13 20:20:40 +00:00
|
|
|
if (todo >= tab_pad)
|
|
|
|
{
|
|
|
|
*s++ = TAB;
|
|
|
|
todo -= tab_pad;
|
2018-06-23 19:23:02 +02:00
|
|
|
#ifdef FEAT_VARTABS
|
|
|
|
ind_done += tab_pad;
|
|
|
|
#endif
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
p = skipwhite(p);
|
|
|
|
}
|
|
|
|
|
2018-06-23 19:23:02 +02:00
|
|
|
#ifdef FEAT_VARTABS
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
tab_pad = tabstop_padding(ind_done, curbuf->b_p_ts,
|
|
|
|
curbuf->b_p_vts_array);
|
|
|
|
if (todo < tab_pad)
|
|
|
|
break;
|
|
|
|
*s++ = TAB;
|
|
|
|
todo -= tab_pad;
|
|
|
|
ind_done += tab_pad;
|
|
|
|
}
|
|
|
|
#else
|
2004-06-13 20:20:40 +00:00
|
|
|
while (todo >= (int)curbuf->b_p_ts)
|
|
|
|
{
|
|
|
|
*s++ = TAB;
|
|
|
|
todo -= (int)curbuf->b_p_ts;
|
|
|
|
}
|
2018-06-23 19:23:02 +02:00
|
|
|
#endif
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
while (todo > 0)
|
|
|
|
{
|
|
|
|
*s++ = ' ';
|
|
|
|
--todo;
|
|
|
|
}
|
|
|
|
mch_memmove(s, p, (size_t)line_len);
|
|
|
|
|
2019-01-08 23:07:24 +01:00
|
|
|
// Replace the line (unless undo fails).
|
2004-06-13 20:20:40 +00:00
|
|
|
if (!(flags & SIN_UNDO) || u_savesub(curwin->w_cursor.lnum) == OK)
|
|
|
|
{
|
|
|
|
ml_replace(curwin->w_cursor.lnum, newline, FALSE);
|
|
|
|
if (flags & SIN_CHANGED)
|
|
|
|
changed_bytes(curwin->w_cursor.lnum, 0);
|
2019-01-08 23:07:24 +01:00
|
|
|
|
|
|
|
// Correct saved cursor position if it is in this line.
|
2013-10-06 17:46:56 +02:00
|
|
|
if (saved_cursor.lnum == curwin->w_cursor.lnum)
|
|
|
|
{
|
|
|
|
if (saved_cursor.col >= (colnr_T)(p - oldline))
|
2019-01-08 23:07:24 +01:00
|
|
|
// cursor was after the indent, adjust for the number of
|
|
|
|
// bytes added/removed
|
2013-10-06 17:46:56 +02:00
|
|
|
saved_cursor.col += ind_len - (colnr_T)(p - oldline);
|
|
|
|
else if (saved_cursor.col >= (colnr_T)(s - newline))
|
2019-01-08 23:07:24 +01:00
|
|
|
// cursor was in the indent, and is now after it, put it back
|
|
|
|
// at the start of the indent (replacing spaces with TAB)
|
2013-10-06 17:46:56 +02:00
|
|
|
saved_cursor.col = (colnr_T)(s - newline);
|
|
|
|
}
|
2019-01-08 23:07:24 +01:00
|
|
|
#ifdef FEAT_TEXT_PROP
|
2019-05-17 22:57:26 +02:00
|
|
|
{
|
|
|
|
int added = ind_len - (colnr_T)(p - oldline);
|
|
|
|
|
|
|
|
// When increasing indent this behaves like spaces were inserted at
|
|
|
|
// the old indent, when decreasing indent it behaves like spaces
|
|
|
|
// were deleted at the new indent.
|
|
|
|
adjust_prop_columns(curwin->w_cursor.lnum,
|
2019-05-19 22:53:40 +02:00
|
|
|
(colnr_T)(added > 0 ? (p - oldline) : ind_len), added, 0);
|
2019-05-17 22:57:26 +02:00
|
|
|
}
|
2019-01-08 23:07:24 +01:00
|
|
|
#endif
|
2005-03-18 20:27:04 +00:00
|
|
|
retval = TRUE;
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
vim_free(newline);
|
|
|
|
|
|
|
|
curwin->w_cursor.col = ind_len;
|
2005-03-18 20:27:04 +00:00
|
|
|
return retval;
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Return the indent of the current line after a number. Return -1 if no
|
|
|
|
* number was found. Used for 'n' in 'formatoptions': numbered list.
|
2004-12-27 21:59:20 +00:00
|
|
|
* Since a pattern is used it can actually handle more than numbers.
|
2004-06-13 20:20:40 +00:00
|
|
|
*/
|
|
|
|
int
|
2016-01-30 19:39:49 +01:00
|
|
|
get_number_indent(linenr_T lnum)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
colnr_T col;
|
|
|
|
pos_T pos;
|
|
|
|
|
2012-06-29 15:04:49 +02:00
|
|
|
regmatch_T regmatch;
|
|
|
|
int lead_len = 0; /* length of comment leader */
|
|
|
|
|
2004-06-13 20:20:40 +00:00
|
|
|
if (lnum > curbuf->b_ml.ml_line_count)
|
|
|
|
return -1;
|
2004-12-27 21:59:20 +00:00
|
|
|
pos.lnum = 0;
|
2012-06-13 17:28:55 +02:00
|
|
|
|
|
|
|
#ifdef FEAT_COMMENTS
|
2012-06-29 15:04:49 +02:00
|
|
|
/* In format_lines() (i.e. not insert mode), fo+=q is needed too... */
|
|
|
|
if ((State & INSERT) || has_format_option(FO_Q_COMS))
|
2012-06-13 17:28:55 +02:00
|
|
|
lead_len = get_leader_len(ml_get(lnum), NULL, FALSE, TRUE);
|
2004-12-27 21:59:20 +00:00
|
|
|
#endif
|
2012-06-29 15:04:49 +02:00
|
|
|
regmatch.regprog = vim_regcomp(curbuf->b_p_flp, RE_MAGIC);
|
|
|
|
if (regmatch.regprog != NULL)
|
2012-06-13 17:28:55 +02:00
|
|
|
{
|
2012-06-29 15:04:49 +02:00
|
|
|
regmatch.rm_ic = FALSE;
|
2012-06-13 17:28:55 +02:00
|
|
|
|
2012-06-29 15:04:49 +02:00
|
|
|
/* vim_regexec() expects a pointer to a line. This lets us
|
|
|
|
* start matching for the flp beyond any comment leader... */
|
|
|
|
if (vim_regexec(®match, ml_get(lnum) + lead_len, (colnr_T)0))
|
2012-06-13 17:28:55 +02:00
|
|
|
{
|
2012-06-29 15:04:49 +02:00
|
|
|
pos.lnum = lnum;
|
|
|
|
pos.col = (colnr_T)(*regmatch.endp - ml_get(lnum));
|
|
|
|
pos.coladd = 0;
|
2012-06-13 17:28:55 +02:00
|
|
|
}
|
2013-06-08 18:19:48 +02:00
|
|
|
vim_regfree(regmatch.regprog);
|
2012-06-13 17:28:55 +02:00
|
|
|
}
|
2004-12-27 21:59:20 +00:00
|
|
|
|
|
|
|
if (pos.lnum == 0 || *ml_get_pos(&pos) == NUL)
|
2004-06-13 20:20:40 +00:00
|
|
|
return -1;
|
|
|
|
getvcol(curwin, &pos, &col, NULL, NULL);
|
|
|
|
return (int)col;
|
|
|
|
}
|
|
|
|
|
2014-06-25 14:39:50 +02:00
|
|
|
#if defined(FEAT_LINEBREAK) || defined(PROTO)
|
|
|
|
/*
|
|
|
|
* Return appropriate space number for breakindent, taking influencing
|
|
|
|
* parameters into account. Window must be specified, since it is not
|
|
|
|
* necessarily always the current one.
|
|
|
|
*/
|
|
|
|
int
|
2016-01-30 19:39:49 +01:00
|
|
|
get_breakindent_win(
|
|
|
|
win_T *wp,
|
|
|
|
char_u *line) /* start of the line */
|
2014-06-25 14:39:50 +02:00
|
|
|
{
|
|
|
|
static int prev_indent = 0; /* cached indent value */
|
|
|
|
static long prev_ts = 0L; /* cached tabstop value */
|
|
|
|
static char_u *prev_line = NULL; /* cached pointer to line */
|
2017-02-17 16:31:35 +01:00
|
|
|
static varnumber_T prev_tick = 0; /* changedtick of cached value */
|
2018-06-23 19:23:02 +02:00
|
|
|
#ifdef FEAT_VARTABS
|
|
|
|
static int *prev_vts = NULL; /* cached vartabs values */
|
|
|
|
#endif
|
2014-06-25 14:39:50 +02:00
|
|
|
int bri = 0;
|
|
|
|
/* window width minus window margin space, i.e. what rests for text */
|
2017-09-22 15:20:32 +02:00
|
|
|
const int eff_wwidth = wp->w_width
|
2014-06-25 14:39:50 +02:00
|
|
|
- ((wp->w_p_nu || wp->w_p_rnu)
|
|
|
|
&& (vim_strchr(p_cpo, CPO_NUMCOL) == NULL)
|
|
|
|
? number_width(wp) + 1 : 0);
|
|
|
|
|
|
|
|
/* used cached indent, unless pointer or 'tabstop' changed */
|
2014-06-25 22:55:38 +02:00
|
|
|
if (prev_line != line || prev_ts != wp->w_buffer->b_p_ts
|
2018-06-23 19:23:02 +02:00
|
|
|
|| prev_tick != CHANGEDTICK(wp->w_buffer)
|
|
|
|
#ifdef FEAT_VARTABS
|
|
|
|
|| prev_vts != wp->w_buffer->b_p_vts_array
|
|
|
|
#endif
|
|
|
|
)
|
2014-06-25 14:39:50 +02:00
|
|
|
{
|
|
|
|
prev_line = line;
|
|
|
|
prev_ts = wp->w_buffer->b_p_ts;
|
2017-02-25 14:59:34 +01:00
|
|
|
prev_tick = CHANGEDTICK(wp->w_buffer);
|
2018-06-23 19:23:02 +02:00
|
|
|
#ifdef FEAT_VARTABS
|
|
|
|
prev_vts = wp->w_buffer->b_p_vts_array;
|
|
|
|
prev_indent = get_indent_str_vtab(line,
|
|
|
|
(int)wp->w_buffer->b_p_ts,
|
|
|
|
wp->w_buffer->b_p_vts_array, wp->w_p_list);
|
|
|
|
#else
|
2014-06-25 14:39:50 +02:00
|
|
|
prev_indent = get_indent_str(line,
|
2014-06-26 21:24:56 +02:00
|
|
|
(int)wp->w_buffer->b_p_ts, wp->w_p_list);
|
2018-06-23 19:23:02 +02:00
|
|
|
#endif
|
2014-06-25 14:39:50 +02:00
|
|
|
}
|
2014-06-26 21:24:56 +02:00
|
|
|
bri = prev_indent + wp->w_p_brishift;
|
2014-06-25 14:39:50 +02:00
|
|
|
|
|
|
|
/* indent minus the length of the showbreak string */
|
|
|
|
if (wp->w_p_brisbr)
|
|
|
|
bri -= vim_strsize(p_sbr);
|
|
|
|
|
|
|
|
/* Add offset for number column, if 'n' is in 'cpoptions' */
|
|
|
|
bri += win_col_off2(wp);
|
|
|
|
|
|
|
|
/* never indent past left window margin */
|
|
|
|
if (bri < 0)
|
|
|
|
bri = 0;
|
|
|
|
/* always leave at least bri_min characters on the left,
|
|
|
|
* if text width is sufficient */
|
|
|
|
else if (bri > eff_wwidth - wp->w_p_brimin)
|
|
|
|
bri = (eff_wwidth - wp->w_p_brimin < 0)
|
|
|
|
? 0 : eff_wwidth - wp->w_p_brimin;
|
|
|
|
|
|
|
|
return bri;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2019-05-11 18:36:34 +02:00
|
|
|
#if defined(FEAT_COMMENTS) || defined(PROTO)
|
2004-06-13 20:20:40 +00:00
|
|
|
/*
|
2019-05-11 18:36:34 +02:00
|
|
|
* get_leader_len() returns the length in bytes of the prefix of the given
|
|
|
|
* string which introduces a comment. If this string is not a comment then
|
|
|
|
* 0 is returned.
|
|
|
|
* When "flags" is not NULL, it is set to point to the flags of the recognized
|
|
|
|
* comment leader.
|
|
|
|
* "backward" must be true for the "O" command.
|
|
|
|
* If "include_space" is set, include trailing whitespace while calculating the
|
|
|
|
* length.
|
2004-06-13 20:20:40 +00:00
|
|
|
*/
|
|
|
|
int
|
2019-05-11 18:36:34 +02:00
|
|
|
get_leader_len(
|
|
|
|
char_u *line,
|
|
|
|
char_u **flags,
|
|
|
|
int backward,
|
|
|
|
int include_space)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
2019-05-11 18:36:34 +02:00
|
|
|
int i, j;
|
|
|
|
int result;
|
|
|
|
int got_com = FALSE;
|
|
|
|
int found_one;
|
|
|
|
char_u part_buf[COM_MAX_LEN]; /* buffer for one option part */
|
|
|
|
char_u *string; /* pointer to comment string */
|
|
|
|
char_u *list;
|
|
|
|
int middle_match_len = 0;
|
|
|
|
char_u *prev_list;
|
|
|
|
char_u *saved_flags = NULL;
|
|
|
|
|
|
|
|
result = i = 0;
|
|
|
|
while (VIM_ISWHITE(line[i])) /* leading white space is ignored */
|
|
|
|
++i;
|
2004-06-13 20:20:40 +00:00
|
|
|
|
|
|
|
/*
|
2019-05-11 18:36:34 +02:00
|
|
|
* Repeat to match several nested comment strings.
|
2004-06-13 20:20:40 +00:00
|
|
|
*/
|
2019-05-11 18:36:34 +02:00
|
|
|
while (line[i] != NUL)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
/*
|
2019-05-11 18:36:34 +02:00
|
|
|
* scan through the 'comments' option for a match
|
2004-06-13 20:20:40 +00:00
|
|
|
*/
|
2019-05-11 18:36:34 +02:00
|
|
|
found_one = FALSE;
|
|
|
|
for (list = curbuf->b_p_com; *list; )
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
2019-05-11 18:36:34 +02:00
|
|
|
/* Get one option part into part_buf[]. Advance "list" to next
|
|
|
|
* one. Put "string" at start of string. */
|
|
|
|
if (!got_com && flags != NULL)
|
|
|
|
*flags = list; /* remember where flags started */
|
|
|
|
prev_list = list;
|
|
|
|
(void)copy_option_part(&list, part_buf, COM_MAX_LEN, ",");
|
|
|
|
string = vim_strchr(part_buf, ':');
|
|
|
|
if (string == NULL) /* missing ':', ignore this part */
|
|
|
|
continue;
|
|
|
|
*string++ = NUL; /* isolate flags from string */
|
2004-06-13 20:20:40 +00:00
|
|
|
|
2019-05-11 18:36:34 +02:00
|
|
|
/* If we found a middle match previously, use that match when this
|
|
|
|
* is not a middle or end. */
|
|
|
|
if (middle_match_len != 0
|
|
|
|
&& vim_strchr(part_buf, COM_MIDDLE) == NULL
|
|
|
|
&& vim_strchr(part_buf, COM_END) == NULL)
|
|
|
|
break;
|
2004-06-13 20:20:40 +00:00
|
|
|
|
2019-05-11 18:36:34 +02:00
|
|
|
/* When we already found a nested comment, only accept further
|
|
|
|
* nested comments. */
|
|
|
|
if (got_com && vim_strchr(part_buf, COM_NEST) == NULL)
|
|
|
|
continue;
|
2004-06-13 20:20:40 +00:00
|
|
|
|
2019-05-11 18:36:34 +02:00
|
|
|
/* When 'O' flag present and using "O" command skip this one. */
|
|
|
|
if (backward && vim_strchr(part_buf, COM_NOBACK) != NULL)
|
|
|
|
continue;
|
2004-06-13 20:20:40 +00:00
|
|
|
|
2019-05-11 18:36:34 +02:00
|
|
|
/* Line contents and string must match.
|
|
|
|
* When string starts with white space, must have some white space
|
|
|
|
* (but the amount does not need to match, there might be a mix of
|
|
|
|
* TABs and spaces). */
|
|
|
|
if (VIM_ISWHITE(string[0]))
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
2019-05-11 18:36:34 +02:00
|
|
|
if (i == 0 || !VIM_ISWHITE(line[i - 1]))
|
|
|
|
continue; /* missing white space */
|
|
|
|
while (VIM_ISWHITE(string[0]))
|
|
|
|
++string;
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
2019-05-11 18:36:34 +02:00
|
|
|
for (j = 0; string[j] != NUL && string[j] == line[i + j]; ++j)
|
|
|
|
;
|
|
|
|
if (string[j] != NUL)
|
|
|
|
continue; /* string doesn't match */
|
|
|
|
|
|
|
|
/* When 'b' flag used, there must be white space or an
|
|
|
|
* end-of-line after the string in the line. */
|
|
|
|
if (vim_strchr(part_buf, COM_BLANK) != NULL
|
|
|
|
&& !VIM_ISWHITE(line[i + j]) && line[i + j] != NUL)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* We have found a match, stop searching unless this is a middle
|
|
|
|
* comment. The middle comment can be a substring of the end
|
|
|
|
* comment in which case it's better to return the length of the
|
|
|
|
* end comment and its flags. Thus we keep searching with middle
|
|
|
|
* and end matches and use an end match if it matches better. */
|
|
|
|
if (vim_strchr(part_buf, COM_MIDDLE) != NULL)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
2019-05-11 18:36:34 +02:00
|
|
|
if (middle_match_len == 0)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
2019-05-11 18:36:34 +02:00
|
|
|
middle_match_len = j;
|
|
|
|
saved_flags = prev_list;
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
2019-05-11 18:36:34 +02:00
|
|
|
continue;
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
2019-05-11 18:36:34 +02:00
|
|
|
if (middle_match_len != 0 && j > middle_match_len)
|
|
|
|
/* Use this match instead of the middle match, since it's a
|
|
|
|
* longer thus better match. */
|
|
|
|
middle_match_len = 0;
|
|
|
|
|
|
|
|
if (middle_match_len == 0)
|
|
|
|
i += j;
|
|
|
|
found_one = TRUE;
|
|
|
|
break;
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
|
2019-05-11 18:36:34 +02:00
|
|
|
if (middle_match_len != 0)
|
|
|
|
{
|
|
|
|
/* Use the previously found middle match after failing to find a
|
|
|
|
* match with an end. */
|
|
|
|
if (!got_com && flags != NULL)
|
|
|
|
*flags = saved_flags;
|
|
|
|
i += middle_match_len;
|
|
|
|
found_one = TRUE;
|
|
|
|
}
|
2004-06-13 20:20:40 +00:00
|
|
|
|
2019-05-11 18:36:34 +02:00
|
|
|
/* No match found, stop scanning. */
|
|
|
|
if (!found_one)
|
|
|
|
break;
|
2004-06-13 20:20:40 +00:00
|
|
|
|
2012-06-06 16:12:59 +02:00
|
|
|
result = i;
|
|
|
|
|
2011-05-10 13:38:27 +02:00
|
|
|
/* Include any trailing white space. */
|
2017-03-12 20:10:05 +01:00
|
|
|
while (VIM_ISWHITE(line[i]))
|
2004-06-13 20:20:40 +00:00
|
|
|
++i;
|
|
|
|
|
2012-06-06 16:12:59 +02:00
|
|
|
if (include_space)
|
|
|
|
result = i;
|
|
|
|
|
2011-05-10 13:38:27 +02:00
|
|
|
/* If this comment doesn't nest, stop here. */
|
|
|
|
got_com = TRUE;
|
2004-06-13 20:20:40 +00:00
|
|
|
if (vim_strchr(part_buf, COM_NEST) == NULL)
|
|
|
|
break;
|
|
|
|
}
|
2012-06-06 16:12:59 +02:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Return the offset at which the last comment in line starts. If there is no
|
|
|
|
* comment in the whole line, -1 is returned.
|
|
|
|
*
|
|
|
|
* When "flags" is not null, it is set to point to the flags describing the
|
|
|
|
* recognized comment leader.
|
|
|
|
*/
|
|
|
|
int
|
2016-01-30 19:39:49 +01:00
|
|
|
get_last_leader_offset(char_u *line, char_u **flags)
|
2012-06-06 16:12:59 +02:00
|
|
|
{
|
|
|
|
int result = -1;
|
|
|
|
int i, j;
|
|
|
|
int lower_check_bound = 0;
|
|
|
|
char_u *string;
|
|
|
|
char_u *com_leader;
|
|
|
|
char_u *com_flags;
|
|
|
|
char_u *list;
|
|
|
|
int found_one;
|
|
|
|
char_u part_buf[COM_MAX_LEN]; /* buffer for one option part */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Repeat to match several nested comment strings.
|
|
|
|
*/
|
|
|
|
i = (int)STRLEN(line);
|
|
|
|
while (--i >= lower_check_bound)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* scan through the 'comments' option for a match
|
|
|
|
*/
|
|
|
|
found_one = FALSE;
|
|
|
|
for (list = curbuf->b_p_com; *list; )
|
|
|
|
{
|
|
|
|
char_u *flags_save = list;
|
2011-05-10 13:38:27 +02:00
|
|
|
|
2012-06-06 16:12:59 +02:00
|
|
|
/*
|
|
|
|
* Get one option part into part_buf[]. Advance list to next one.
|
|
|
|
* put string at start of string.
|
|
|
|
*/
|
|
|
|
(void)copy_option_part(&list, part_buf, COM_MAX_LEN, ",");
|
|
|
|
string = vim_strchr(part_buf, ':');
|
|
|
|
if (string == NULL) /* If everything is fine, this cannot actually
|
|
|
|
* happen. */
|
|
|
|
continue;
|
|
|
|
*string++ = NUL; /* Isolate flags from string. */
|
|
|
|
com_leader = string;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Line contents and string must match.
|
|
|
|
* When string starts with white space, must have some white space
|
|
|
|
* (but the amount does not need to match, there might be a mix of
|
|
|
|
* TABs and spaces).
|
|
|
|
*/
|
2017-03-12 20:10:05 +01:00
|
|
|
if (VIM_ISWHITE(string[0]))
|
2012-06-06 16:12:59 +02:00
|
|
|
{
|
2017-03-12 20:10:05 +01:00
|
|
|
if (i == 0 || !VIM_ISWHITE(line[i - 1]))
|
2012-06-06 16:12:59 +02:00
|
|
|
continue;
|
2018-12-07 21:08:49 +01:00
|
|
|
while (VIM_ISWHITE(*string))
|
2012-06-06 16:12:59 +02:00
|
|
|
++string;
|
|
|
|
}
|
|
|
|
for (j = 0; string[j] != NUL && string[j] == line[i + j]; ++j)
|
|
|
|
/* do nothing */;
|
|
|
|
if (string[j] != NUL)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* When 'b' flag used, there must be white space or an
|
|
|
|
* end-of-line after the string in the line.
|
|
|
|
*/
|
|
|
|
if (vim_strchr(part_buf, COM_BLANK) != NULL
|
2017-03-12 20:10:05 +01:00
|
|
|
&& !VIM_ISWHITE(line[i + j]) && line[i + j] != NUL)
|
2012-06-06 16:12:59 +02:00
|
|
|
continue;
|
2018-12-07 21:08:49 +01:00
|
|
|
|
2018-12-09 15:00:52 +01:00
|
|
|
if (vim_strchr(part_buf, COM_MIDDLE) != NULL)
|
2018-12-07 21:08:49 +01:00
|
|
|
{
|
2018-12-09 15:00:52 +01:00
|
|
|
// For a middlepart comment, only consider it to match if
|
|
|
|
// everything before the current position in the line is
|
|
|
|
// whitespace. Otherwise we would think we are inside a
|
|
|
|
// comment if the middle part appears somewhere in the middle
|
|
|
|
// of the line. E.g. for C the "*" appears often.
|
2018-12-07 21:08:49 +01:00
|
|
|
for (j = 0; VIM_ISWHITE(line[j]) && j <= i; j++)
|
|
|
|
;
|
|
|
|
if (j < i)
|
|
|
|
continue;
|
2012-06-06 16:12:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We have found a match, stop searching.
|
|
|
|
*/
|
|
|
|
found_one = TRUE;
|
|
|
|
|
|
|
|
if (flags)
|
|
|
|
*flags = flags_save;
|
|
|
|
com_flags = flags_save;
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (found_one)
|
|
|
|
{
|
|
|
|
char_u part_buf2[COM_MAX_LEN]; /* buffer for one option part */
|
|
|
|
int len1, len2, off;
|
|
|
|
|
|
|
|
result = i;
|
|
|
|
/*
|
|
|
|
* If this comment nests, continue searching.
|
|
|
|
*/
|
|
|
|
if (vim_strchr(part_buf, COM_NEST) != NULL)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
lower_check_bound = i;
|
|
|
|
|
|
|
|
/* Let's verify whether the comment leader found is a substring
|
|
|
|
* of other comment leaders. If it is, let's adjust the
|
|
|
|
* lower_check_bound so that we make sure that we have determined
|
|
|
|
* the comment leader correctly.
|
|
|
|
*/
|
|
|
|
|
2017-03-12 20:10:05 +01:00
|
|
|
while (VIM_ISWHITE(*com_leader))
|
2012-06-06 16:12:59 +02:00
|
|
|
++com_leader;
|
|
|
|
len1 = (int)STRLEN(com_leader);
|
|
|
|
|
|
|
|
for (list = curbuf->b_p_com; *list; )
|
|
|
|
{
|
|
|
|
char_u *flags_save = list;
|
|
|
|
|
|
|
|
(void)copy_option_part(&list, part_buf2, COM_MAX_LEN, ",");
|
|
|
|
if (flags_save == com_flags)
|
|
|
|
continue;
|
|
|
|
string = vim_strchr(part_buf2, ':');
|
|
|
|
++string;
|
2017-03-12 20:10:05 +01:00
|
|
|
while (VIM_ISWHITE(*string))
|
2012-06-06 16:12:59 +02:00
|
|
|
++string;
|
|
|
|
len2 = (int)STRLEN(string);
|
|
|
|
if (len2 == 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* Now we have to verify whether string ends with a substring
|
|
|
|
* beginning the com_leader. */
|
|
|
|
for (off = (len2 > i ? i : len2); off > 0 && off + len1 > len2;)
|
|
|
|
{
|
|
|
|
--off;
|
|
|
|
if (!STRNCMP(string + off, com_leader, len2 - off))
|
|
|
|
{
|
|
|
|
if (i - off < lower_check_bound)
|
|
|
|
lower_check_bound = i - off;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Return the number of window lines occupied by buffer line "lnum".
|
|
|
|
*/
|
|
|
|
int
|
2016-01-30 19:39:49 +01:00
|
|
|
plines(linenr_T lnum)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
return plines_win(curwin, lnum, TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2016-01-30 19:39:49 +01:00
|
|
|
plines_win(
|
|
|
|
win_T *wp,
|
|
|
|
linenr_T lnum,
|
|
|
|
int winheight) /* when TRUE limit to window height */
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
#if defined(FEAT_DIFF) || defined(PROTO)
|
|
|
|
/* Check for filler lines above this buffer line. When folded the result
|
|
|
|
* is one line anyway. */
|
|
|
|
return plines_win_nofill(wp, lnum, winheight) + diff_check_fill(wp, lnum);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2016-01-30 19:39:49 +01:00
|
|
|
plines_nofill(linenr_T lnum)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
return plines_win_nofill(curwin, lnum, TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2016-01-30 19:39:49 +01:00
|
|
|
plines_win_nofill(
|
|
|
|
win_T *wp,
|
|
|
|
linenr_T lnum,
|
|
|
|
int winheight) /* when TRUE limit to window height */
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
#endif
|
|
|
|
int lines;
|
|
|
|
|
|
|
|
if (!wp->w_p_wrap)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
if (wp->w_width == 0)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
#ifdef FEAT_FOLDING
|
|
|
|
/* A folded lines is handled just like an empty line. */
|
|
|
|
/* NOTE: Caller must handle lines that are MAYBE folded. */
|
|
|
|
if (lineFolded(wp, lnum) == TRUE)
|
|
|
|
return 1;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
lines = plines_win_nofold(wp, lnum);
|
|
|
|
if (winheight > 0 && lines > wp->w_height)
|
|
|
|
return (int)wp->w_height;
|
|
|
|
return lines;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Return number of window lines physical line "lnum" will occupy in window
|
|
|
|
* "wp". Does not care about folding, 'wrap' or 'diff'.
|
|
|
|
*/
|
|
|
|
int
|
2016-01-30 19:39:49 +01:00
|
|
|
plines_win_nofold(win_T *wp, linenr_T lnum)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
char_u *s;
|
|
|
|
long col;
|
|
|
|
int width;
|
|
|
|
|
|
|
|
s = ml_get_buf(wp->w_buffer, lnum, FALSE);
|
|
|
|
if (*s == NUL) /* empty line */
|
|
|
|
return 1;
|
|
|
|
col = win_linetabsize(wp, s, (colnr_T)MAXCOL);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If list mode is on, then the '$' at the end of the line may take up one
|
|
|
|
* extra column.
|
|
|
|
*/
|
|
|
|
if (wp->w_p_list && lcs_eol != NUL)
|
|
|
|
col += 1;
|
|
|
|
|
|
|
|
/*
|
2010-05-16 15:46:46 +02:00
|
|
|
* Add column offset for 'number', 'relativenumber' and 'foldcolumn'.
|
2004-06-13 20:20:40 +00:00
|
|
|
*/
|
2017-09-22 15:20:32 +02:00
|
|
|
width = wp->w_width - win_col_off(wp);
|
2004-06-13 20:20:40 +00:00
|
|
|
if (width <= 0)
|
|
|
|
return 32000;
|
|
|
|
if (col <= width)
|
|
|
|
return 1;
|
|
|
|
col -= width;
|
|
|
|
width += win_col_off2(wp);
|
|
|
|
return (col + (width - 1)) / width + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Like plines_win(), but only reports the number of physical screen lines
|
|
|
|
* used from the start of the line to the given column number.
|
|
|
|
*/
|
|
|
|
int
|
2016-01-30 19:39:49 +01:00
|
|
|
plines_win_col(win_T *wp, linenr_T lnum, long column)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
long col;
|
|
|
|
char_u *s;
|
|
|
|
int lines = 0;
|
|
|
|
int width;
|
2014-06-25 14:39:50 +02:00
|
|
|
char_u *line;
|
2004-06-13 20:20:40 +00:00
|
|
|
|
|
|
|
#ifdef FEAT_DIFF
|
|
|
|
/* Check for filler lines above this buffer line. When folded the result
|
|
|
|
* is one line anyway. */
|
|
|
|
lines = diff_check_fill(wp, lnum);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (!wp->w_p_wrap)
|
|
|
|
return lines + 1;
|
|
|
|
|
|
|
|
if (wp->w_width == 0)
|
|
|
|
return lines + 1;
|
|
|
|
|
2014-06-25 14:39:50 +02:00
|
|
|
line = s = ml_get_buf(wp->w_buffer, lnum, FALSE);
|
2004-06-13 20:20:40 +00:00
|
|
|
|
|
|
|
col = 0;
|
|
|
|
while (*s != NUL && --column >= 0)
|
|
|
|
{
|
2014-06-25 14:39:50 +02:00
|
|
|
col += win_lbr_chartabsize(wp, line, s, (colnr_T)col, NULL);
|
2017-03-12 19:22:36 +01:00
|
|
|
MB_PTR_ADV(s);
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If *s is a TAB, and the TAB is not displayed as ^I, and we're not in
|
|
|
|
* INSERT mode, then col must be adjusted so that it represents the last
|
2019-05-11 18:36:34 +02:00
|
|
|
* screen position of the TAB. This only fixes an error when the TAB wraps
|
|
|
|
* from one screen line to the next (when 'columns' is not a multiple of
|
|
|
|
* 'ts') -- webb.
|
|
|
|
*/
|
|
|
|
if (*s == TAB && (State & NORMAL) && (!wp->w_p_list || lcs_tab1))
|
|
|
|
col += win_lbr_chartabsize(wp, line, s, (colnr_T)col, NULL) - 1;
|
2004-06-13 20:20:40 +00:00
|
|
|
|
|
|
|
/*
|
2019-05-11 18:36:34 +02:00
|
|
|
* Add column offset for 'number', 'relativenumber', 'foldcolumn', etc.
|
2004-06-13 20:20:40 +00:00
|
|
|
*/
|
2019-05-11 18:36:34 +02:00
|
|
|
width = wp->w_width - win_col_off(wp);
|
|
|
|
if (width <= 0)
|
|
|
|
return 9999;
|
2004-06-13 20:20:40 +00:00
|
|
|
|
2019-05-11 18:36:34 +02:00
|
|
|
lines += 1;
|
|
|
|
if (col > width)
|
|
|
|
lines += (col - width) / (width + win_col_off2(wp)) + 1;
|
|
|
|
return lines;
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
|
2019-05-11 18:36:34 +02:00
|
|
|
int
|
|
|
|
plines_m_win(win_T *wp, linenr_T first, linenr_T last)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
2019-05-11 18:36:34 +02:00
|
|
|
int count = 0;
|
2004-06-13 20:20:40 +00:00
|
|
|
|
2019-05-11 18:36:34 +02:00
|
|
|
while (first <= last)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
2019-05-11 18:36:34 +02:00
|
|
|
#ifdef FEAT_FOLDING
|
|
|
|
int x;
|
2004-06-13 20:20:40 +00:00
|
|
|
|
2019-05-11 18:36:34 +02:00
|
|
|
/* Check if there are any really folded lines, but also included lines
|
|
|
|
* that are maybe folded. */
|
|
|
|
x = foldedCount(wp, first, NULL);
|
|
|
|
if (x > 0)
|
|
|
|
{
|
|
|
|
++count; /* count 1 for "+-- folded" line */
|
|
|
|
first += x;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
#ifdef FEAT_DIFF
|
|
|
|
if (first == wp->w_topline)
|
|
|
|
count += plines_win_nofill(wp, first, TRUE) + wp->w_topfill;
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
count += plines_win(wp, first, TRUE);
|
|
|
|
++first;
|
|
|
|
}
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
2019-05-11 18:36:34 +02:00
|
|
|
return (count);
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2016-01-30 19:39:49 +01:00
|
|
|
gchar_pos(pos_T *pos)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
2017-12-19 21:23:21 +01:00
|
|
|
char_u *ptr;
|
2004-06-13 20:20:40 +00:00
|
|
|
|
2017-12-19 21:23:21 +01:00
|
|
|
/* When searching columns is sometimes put at the end of a line. */
|
|
|
|
if (pos->col == MAXCOL)
|
|
|
|
return NUL;
|
|
|
|
ptr = ml_get_pos(pos);
|
2004-06-13 20:20:40 +00:00
|
|
|
if (has_mbyte)
|
|
|
|
return (*mb_ptr2char)(ptr);
|
|
|
|
return (int)*ptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2016-01-30 19:39:49 +01:00
|
|
|
gchar_cursor(void)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
if (has_mbyte)
|
|
|
|
return (*mb_ptr2char)(ml_get_cursor());
|
|
|
|
return (int)*ml_get_cursor();
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Write a character at the current cursor position.
|
|
|
|
* It is directly written into the block.
|
|
|
|
*/
|
|
|
|
void
|
2016-01-30 19:39:49 +01:00
|
|
|
pchar_cursor(int c)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
*(ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE)
|
|
|
|
+ curwin->w_cursor.col) = c;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* When extra == 0: Return TRUE if the cursor is before or on the first
|
|
|
|
* non-blank in the line.
|
|
|
|
* When extra == 1: Return TRUE if the cursor is before the first non-blank in
|
|
|
|
* the line.
|
|
|
|
*/
|
|
|
|
int
|
2016-01-30 19:39:49 +01:00
|
|
|
inindent(int extra)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
char_u *ptr;
|
|
|
|
colnr_T col;
|
|
|
|
|
2017-03-12 20:10:05 +01:00
|
|
|
for (col = 0, ptr = ml_get_curline(); VIM_ISWHITE(*ptr); ++col)
|
2004-06-13 20:20:40 +00:00
|
|
|
++ptr;
|
|
|
|
if (col >= curwin->w_cursor.col + extra)
|
|
|
|
return TRUE;
|
|
|
|
else
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Skip to next part of an option argument: Skip space and comma.
|
|
|
|
*/
|
|
|
|
char_u *
|
2016-01-30 19:39:49 +01:00
|
|
|
skip_to_option_part(char_u *p)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
if (*p == ',')
|
|
|
|
++p;
|
|
|
|
while (*p == ' ')
|
|
|
|
++p;
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* check_status: called when the status bars for the buffer 'buf'
|
|
|
|
* need to be updated
|
|
|
|
*/
|
|
|
|
void
|
2016-01-30 19:39:49 +01:00
|
|
|
check_status(buf_T *buf)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
win_T *wp;
|
|
|
|
|
2016-07-24 22:04:11 +02:00
|
|
|
FOR_ALL_WINDOWS(wp)
|
2004-06-13 20:20:40 +00:00
|
|
|
if (wp->w_buffer == buf && wp->w_status_height)
|
|
|
|
{
|
|
|
|
wp->w_redr_status = TRUE;
|
|
|
|
if (must_redraw < VALID)
|
|
|
|
must_redraw = VALID;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Ask for a reply from the user, a 'y' or a 'n'.
|
|
|
|
* No other characters are accepted, the message is repeated until a valid
|
|
|
|
* reply is entered or CTRL-C is hit.
|
|
|
|
* If direct is TRUE, don't use vgetc() but ui_inchar(), don't get characters
|
|
|
|
* from any buffers but directly from the user.
|
|
|
|
*
|
|
|
|
* return the 'y' or 'n'
|
|
|
|
*/
|
|
|
|
int
|
2016-01-30 19:39:49 +01:00
|
|
|
ask_yesno(char_u *str, int direct)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
int r = ' ';
|
|
|
|
int save_State = State;
|
|
|
|
|
|
|
|
if (exiting) /* put terminal in raw mode for this question */
|
|
|
|
settmode(TMODE_RAW);
|
|
|
|
++no_wait_return;
|
|
|
|
#ifdef USE_ON_FLY_SCROLL
|
|
|
|
dont_scroll = TRUE; /* disallow scrolling here */
|
|
|
|
#endif
|
|
|
|
State = CONFIRM; /* mouse behaves like with :confirm */
|
|
|
|
#ifdef FEAT_MOUSE
|
|
|
|
setmouse(); /* disables mouse for xterm */
|
|
|
|
#endif
|
|
|
|
++no_mapping;
|
|
|
|
++allow_keys; /* no mapping here, but recognize keys */
|
|
|
|
|
|
|
|
while (r != 'y' && r != 'n')
|
|
|
|
{
|
|
|
|
/* same highlighting as for wait_return */
|
2019-01-13 23:38:42 +01:00
|
|
|
smsg_attr(HL_ATTR(HLF_R), "%s (y/n)?", str);
|
2004-06-13 20:20:40 +00:00
|
|
|
if (direct)
|
|
|
|
r = get_keystroke();
|
|
|
|
else
|
2008-01-03 11:43:42 +00:00
|
|
|
r = plain_vgetc();
|
2004-06-13 20:20:40 +00:00
|
|
|
if (r == Ctrl_C || r == ESC)
|
|
|
|
r = 'n';
|
|
|
|
msg_putchar(r); /* show what you typed */
|
|
|
|
out_flush();
|
|
|
|
}
|
|
|
|
--no_wait_return;
|
|
|
|
State = save_State;
|
|
|
|
#ifdef FEAT_MOUSE
|
|
|
|
setmouse();
|
|
|
|
#endif
|
|
|
|
--no_mapping;
|
|
|
|
--allow_keys;
|
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2013-03-16 14:20:51 +01:00
|
|
|
#if defined(FEAT_MOUSE) || defined(PROTO)
|
|
|
|
/*
|
|
|
|
* Return TRUE if "c" is a mouse key.
|
|
|
|
*/
|
|
|
|
int
|
2016-01-30 19:39:49 +01:00
|
|
|
is_mouse_key(int c)
|
2013-03-16 14:20:51 +01:00
|
|
|
{
|
|
|
|
return c == K_LEFTMOUSE
|
|
|
|
|| c == K_LEFTMOUSE_NM
|
|
|
|
|| c == K_LEFTDRAG
|
|
|
|
|| c == K_LEFTRELEASE
|
|
|
|
|| c == K_LEFTRELEASE_NM
|
2017-11-18 18:52:04 +01:00
|
|
|
|| c == K_MOUSEMOVE
|
2013-03-16 14:20:51 +01:00
|
|
|
|| c == K_MIDDLEMOUSE
|
|
|
|
|| c == K_MIDDLEDRAG
|
|
|
|
|| c == K_MIDDLERELEASE
|
|
|
|
|| c == K_RIGHTMOUSE
|
|
|
|
|| c == K_RIGHTDRAG
|
|
|
|
|| c == K_RIGHTRELEASE
|
|
|
|
|| c == K_MOUSEDOWN
|
|
|
|
|| c == K_MOUSEUP
|
|
|
|
|| c == K_MOUSELEFT
|
|
|
|
|| c == K_MOUSERIGHT
|
|
|
|
|| c == K_X1MOUSE
|
|
|
|
|| c == K_X1DRAG
|
|
|
|
|| c == K_X1RELEASE
|
|
|
|
|| c == K_X2MOUSE
|
|
|
|
|| c == K_X2DRAG
|
|
|
|
|| c == K_X2RELEASE;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2004-06-13 20:20:40 +00:00
|
|
|
/*
|
|
|
|
* Get a key stroke directly from the user.
|
|
|
|
* Ignores mouse clicks and scrollbar events, except a click for the left
|
|
|
|
* button (used at the more prompt).
|
|
|
|
* Doesn't use vgetc(), because it syncs undo and eats mapped characters.
|
|
|
|
* Disadvantage: typeahead is ignored.
|
|
|
|
* Translates the interrupt character for unix to ESC.
|
|
|
|
*/
|
|
|
|
int
|
2016-01-30 19:39:49 +01:00
|
|
|
get_keystroke(void)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
2012-02-05 22:05:48 +01:00
|
|
|
char_u *buf = NULL;
|
|
|
|
int buflen = 150;
|
|
|
|
int maxlen;
|
2004-06-13 20:20:40 +00:00
|
|
|
int len = 0;
|
|
|
|
int n;
|
|
|
|
int save_mapped_ctrl_c = mapped_ctrl_c;
|
2006-09-05 18:57:57 +00:00
|
|
|
int waited = 0;
|
2004-06-13 20:20:40 +00:00
|
|
|
|
|
|
|
mapped_ctrl_c = FALSE; /* mappings are not used here */
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
cursor_on();
|
|
|
|
out_flush();
|
|
|
|
|
2012-02-05 22:05:48 +01:00
|
|
|
/* Leave some room for check_termcode() to insert a key code into (max
|
|
|
|
* 5 chars plus NUL). And fix_input_buffer() can triple the number of
|
|
|
|
* bytes. */
|
|
|
|
maxlen = (buflen - 6 - len) / 3;
|
|
|
|
if (buf == NULL)
|
|
|
|
buf = alloc(buflen);
|
|
|
|
else if (maxlen < 10)
|
|
|
|
{
|
2015-02-10 18:34:01 +01:00
|
|
|
char_u *t_buf = buf;
|
|
|
|
|
2012-06-20 12:40:08 +02:00
|
|
|
/* Need some more space. This might happen when receiving a long
|
2012-02-05 22:05:48 +01:00
|
|
|
* escape sequence. */
|
|
|
|
buflen += 100;
|
|
|
|
buf = vim_realloc(buf, buflen);
|
2015-02-10 18:34:01 +01:00
|
|
|
if (buf == NULL)
|
|
|
|
vim_free(t_buf);
|
2012-02-05 22:05:48 +01:00
|
|
|
maxlen = (buflen - 6 - len) / 3;
|
|
|
|
}
|
|
|
|
if (buf == NULL)
|
|
|
|
{
|
|
|
|
do_outofmem_msg((long_u)buflen);
|
|
|
|
return ESC; /* panic! */
|
|
|
|
}
|
|
|
|
|
2004-06-13 20:20:40 +00:00
|
|
|
/* First time: blocking wait. Second time: wait up to 100ms for a
|
2012-02-05 22:05:48 +01:00
|
|
|
* terminal code to complete. */
|
|
|
|
n = ui_inchar(buf + len, maxlen, len == 0 ? -1L : 100L, 0);
|
2004-06-13 20:20:40 +00:00
|
|
|
if (n > 0)
|
|
|
|
{
|
|
|
|
/* Replace zero and CSI by a special key code. */
|
2016-08-16 22:50:55 +02:00
|
|
|
n = fix_input_buffer(buf + len, n);
|
2004-06-13 20:20:40 +00:00
|
|
|
len += n;
|
2006-09-05 18:57:57 +00:00
|
|
|
waited = 0;
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
2006-09-05 18:57:57 +00:00
|
|
|
else if (len > 0)
|
|
|
|
++waited; /* keep track of the waiting time */
|
2004-06-13 20:20:40 +00:00
|
|
|
|
2006-09-05 18:57:57 +00:00
|
|
|
/* Incomplete termcode and not timed out yet: get more characters */
|
2012-02-05 22:05:48 +01:00
|
|
|
if ((n = check_termcode(1, buf, buflen, &len)) < 0
|
2006-09-05 18:57:57 +00:00
|
|
|
&& (!p_ttimeout || waited * 100L < (p_ttm < 0 ? p_tm : p_ttm)))
|
2004-06-13 20:20:40 +00:00
|
|
|
continue;
|
2006-09-05 18:57:57 +00:00
|
|
|
|
2010-12-30 12:30:31 +01:00
|
|
|
if (n == KEYLEN_REMOVED) /* key code removed */
|
2011-03-03 15:04:08 +01:00
|
|
|
{
|
2011-03-22 13:07:26 +01:00
|
|
|
if (must_redraw != 0 && !need_wait_return && (State & CMDLINE) == 0)
|
2011-03-03 15:04:08 +01:00
|
|
|
{
|
|
|
|
/* Redrawing was postponed, do it now. */
|
|
|
|
update_screen(0);
|
|
|
|
setcursor(); /* put cursor back where it belongs */
|
|
|
|
}
|
2010-12-30 12:30:31 +01:00
|
|
|
continue;
|
2011-03-03 15:04:08 +01:00
|
|
|
}
|
2010-12-30 12:30:31 +01:00
|
|
|
if (n > 0) /* found a termcode: adjust length */
|
2004-06-13 20:20:40 +00:00
|
|
|
len = n;
|
2010-12-30 12:30:31 +01:00
|
|
|
if (len == 0) /* nothing typed yet */
|
2004-06-13 20:20:40 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
/* Handle modifier and/or special key code. */
|
|
|
|
n = buf[0];
|
|
|
|
if (n == K_SPECIAL)
|
|
|
|
{
|
|
|
|
n = TO_SPECIAL(buf[1], buf[2]);
|
|
|
|
if (buf[1] == KS_MODIFIER
|
|
|
|
|| n == K_IGNORE
|
2013-03-16 21:35:33 +01:00
|
|
|
#ifdef FEAT_MOUSE
|
2013-03-16 14:20:51 +01:00
|
|
|
|| (is_mouse_key(n) && n != K_LEFTMOUSE)
|
2013-03-16 21:35:33 +01:00
|
|
|
#endif
|
2013-03-16 14:20:51 +01:00
|
|
|
#ifdef FEAT_GUI
|
2004-06-13 20:20:40 +00:00
|
|
|
|| n == K_VER_SCROLLBAR
|
|
|
|
|| n == K_HOR_SCROLLBAR
|
|
|
|
#endif
|
|
|
|
)
|
|
|
|
{
|
|
|
|
if (buf[1] == KS_MODIFIER)
|
|
|
|
mod_mask = buf[2];
|
|
|
|
len -= 3;
|
|
|
|
if (len > 0)
|
|
|
|
mch_memmove(buf, buf + 3, (size_t)len);
|
|
|
|
continue;
|
|
|
|
}
|
2006-04-13 20:37:35 +00:00
|
|
|
break;
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
if (has_mbyte)
|
|
|
|
{
|
|
|
|
if (MB_BYTE2LEN(n) > len)
|
|
|
|
continue; /* more bytes to get */
|
2012-02-05 22:05:48 +01:00
|
|
|
buf[len >= buflen ? buflen - 1 : len] = NUL;
|
2004-06-13 20:20:40 +00:00
|
|
|
n = (*mb_ptr2char)(buf);
|
|
|
|
}
|
|
|
|
#ifdef UNIX
|
|
|
|
if (n == intr_char)
|
|
|
|
n = ESC;
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
}
|
2012-02-05 22:05:48 +01:00
|
|
|
vim_free(buf);
|
2004-06-13 20:20:40 +00:00
|
|
|
|
|
|
|
mapped_ctrl_c = save_mapped_ctrl_c;
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2005-06-28 23:32:02 +00:00
|
|
|
* Get a number from the user.
|
|
|
|
* When "mouse_used" is not NULL allow using the mouse.
|
2004-06-13 20:20:40 +00:00
|
|
|
*/
|
|
|
|
int
|
2016-01-30 19:39:49 +01:00
|
|
|
get_number(
|
|
|
|
int colon, /* allow colon to abort */
|
|
|
|
int *mouse_used)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
int n = 0;
|
|
|
|
int c;
|
2006-03-27 17:01:56 +00:00
|
|
|
int typed = 0;
|
2004-06-13 20:20:40 +00:00
|
|
|
|
2005-06-28 23:32:02 +00:00
|
|
|
if (mouse_used != NULL)
|
|
|
|
*mouse_used = FALSE;
|
|
|
|
|
2004-06-13 20:20:40 +00:00
|
|
|
/* When not printing messages, the user won't know what to type, return a
|
|
|
|
* zero (as if CR was hit). */
|
|
|
|
if (msg_silent != 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
#ifdef USE_ON_FLY_SCROLL
|
|
|
|
dont_scroll = TRUE; /* disallow scrolling here */
|
|
|
|
#endif
|
|
|
|
++no_mapping;
|
|
|
|
++allow_keys; /* no mapping here, but recognize keys */
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
windgoto(msg_row, msg_col);
|
|
|
|
c = safe_vgetc();
|
|
|
|
if (VIM_ISDIGIT(c))
|
|
|
|
{
|
|
|
|
n = n * 10 + c - '0';
|
|
|
|
msg_putchar(c);
|
2006-03-27 17:01:56 +00:00
|
|
|
++typed;
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
else if (c == K_DEL || c == K_KDEL || c == K_BS || c == Ctrl_H)
|
|
|
|
{
|
2006-03-27 17:01:56 +00:00
|
|
|
if (typed > 0)
|
|
|
|
{
|
2019-01-19 17:43:09 +01:00
|
|
|
msg_puts("\b \b");
|
2006-03-27 17:01:56 +00:00
|
|
|
--typed;
|
|
|
|
}
|
2004-06-13 20:20:40 +00:00
|
|
|
n /= 10;
|
|
|
|
}
|
2005-06-28 23:32:02 +00:00
|
|
|
#ifdef FEAT_MOUSE
|
|
|
|
else if (mouse_used != NULL && c == K_LEFTMOUSE)
|
|
|
|
{
|
|
|
|
*mouse_used = TRUE;
|
|
|
|
n = mouse_row + 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#endif
|
2004-06-13 20:20:40 +00:00
|
|
|
else if (n == 0 && c == ':' && colon)
|
|
|
|
{
|
|
|
|
stuffcharReadbuff(':');
|
|
|
|
if (!exmode_active)
|
|
|
|
cmdline_row = msg_row;
|
|
|
|
skip_redraw = TRUE; /* skip redraw once */
|
|
|
|
do_redraw = FALSE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else if (c == CAR || c == NL || c == Ctrl_C || c == ESC)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
--no_mapping;
|
|
|
|
--allow_keys;
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
2005-06-13 22:28:56 +00:00
|
|
|
/*
|
|
|
|
* Ask the user to enter a number.
|
2005-06-28 23:32:02 +00:00
|
|
|
* When "mouse_used" is not NULL allow using the mouse and in that case return
|
|
|
|
* the line number.
|
2005-06-13 22:28:56 +00:00
|
|
|
*/
|
|
|
|
int
|
2016-01-30 19:39:49 +01:00
|
|
|
prompt_for_number(int *mouse_used)
|
2005-06-13 22:28:56 +00:00
|
|
|
{
|
|
|
|
int i;
|
2005-06-21 22:37:39 +00:00
|
|
|
int save_cmdline_row;
|
|
|
|
int save_State;
|
2005-06-13 22:28:56 +00:00
|
|
|
|
|
|
|
/* When using ":silent" assume that <CR> was entered. */
|
2005-06-29 22:40:58 +00:00
|
|
|
if (mouse_used != NULL)
|
2019-01-19 17:43:09 +01:00
|
|
|
msg_puts(_("Type number and <Enter> or click with mouse (empty cancels): "));
|
2005-06-29 22:40:58 +00:00
|
|
|
else
|
2019-01-19 17:43:09 +01:00
|
|
|
msg_puts(_("Type number and <Enter> (empty cancels): "));
|
2005-06-21 22:37:39 +00:00
|
|
|
|
2018-08-26 21:23:07 +02:00
|
|
|
// Set the state such that text can be selected/copied/pasted and we still
|
|
|
|
// get mouse events. redraw_after_callback() will not redraw if cmdline_row
|
|
|
|
// is zero.
|
2005-06-21 22:37:39 +00:00
|
|
|
save_cmdline_row = cmdline_row;
|
2006-09-03 14:35:42 +00:00
|
|
|
cmdline_row = 0;
|
2005-06-21 22:37:39 +00:00
|
|
|
save_State = State;
|
2018-08-26 21:23:07 +02:00
|
|
|
State = CMDLINE;
|
2018-04-24 17:41:57 +02:00
|
|
|
#ifdef FEAT_MOUSE
|
2018-08-26 21:23:07 +02:00
|
|
|
// May show different mouse shape.
|
2018-04-24 17:41:57 +02:00
|
|
|
setmouse();
|
|
|
|
#endif
|
|
|
|
|
2005-06-28 23:32:02 +00:00
|
|
|
i = get_number(TRUE, mouse_used);
|
|
|
|
if (KeyTyped)
|
2005-06-13 22:28:56 +00:00
|
|
|
{
|
2005-06-28 23:32:02 +00:00
|
|
|
/* don't call wait_return() now */
|
|
|
|
/* msg_putchar('\n'); */
|
2005-06-13 22:28:56 +00:00
|
|
|
cmdline_row = msg_row - 1;
|
|
|
|
need_wait_return = FALSE;
|
|
|
|
msg_didany = FALSE;
|
2009-07-22 09:04:20 +00:00
|
|
|
msg_didout = FALSE;
|
2005-06-13 22:28:56 +00:00
|
|
|
}
|
2005-06-21 22:37:39 +00:00
|
|
|
else
|
|
|
|
cmdline_row = save_cmdline_row;
|
|
|
|
State = save_State;
|
2018-04-24 17:41:57 +02:00
|
|
|
#ifdef FEAT_MOUSE
|
2018-08-26 21:23:07 +02:00
|
|
|
// May need to restore mouse shape.
|
2018-04-24 17:41:57 +02:00
|
|
|
setmouse();
|
|
|
|
#endif
|
2005-06-21 22:37:39 +00:00
|
|
|
|
2005-06-13 22:28:56 +00:00
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
2004-06-13 20:20:40 +00:00
|
|
|
void
|
2016-01-30 19:39:49 +01:00
|
|
|
msgmore(long n)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
long pn;
|
|
|
|
|
|
|
|
if (global_busy /* no messages now, wait until global is finished */
|
|
|
|
|| !messaging()) /* 'lazyredraw' set, don't do messages now */
|
|
|
|
return;
|
|
|
|
|
2005-01-25 22:18:08 +00:00
|
|
|
/* We don't want to overwrite another important message, but do overwrite
|
|
|
|
* a previous "more lines" or "fewer lines" message, so that "5dd" and
|
|
|
|
* then "put" reports the last action. */
|
|
|
|
if (keep_msg != NULL && !keep_msg_more)
|
|
|
|
return;
|
|
|
|
|
2004-06-13 20:20:40 +00:00
|
|
|
if (n > 0)
|
|
|
|
pn = n;
|
|
|
|
else
|
|
|
|
pn = -n;
|
|
|
|
|
|
|
|
if (pn > p_report)
|
|
|
|
{
|
2018-08-21 15:12:14 +02:00
|
|
|
if (n > 0)
|
2019-01-19 17:43:09 +01:00
|
|
|
vim_snprintf(msg_buf, MSG_BUF_LEN,
|
2018-08-21 15:12:14 +02:00
|
|
|
NGETTEXT("%ld more line", "%ld more lines", pn), pn);
|
2004-06-13 20:20:40 +00:00
|
|
|
else
|
2019-01-19 17:43:09 +01:00
|
|
|
vim_snprintf(msg_buf, MSG_BUF_LEN,
|
2018-08-21 15:12:14 +02:00
|
|
|
NGETTEXT("%ld line less", "%ld fewer lines", pn), pn);
|
2004-06-13 20:20:40 +00:00
|
|
|
if (got_int)
|
2019-01-19 17:43:09 +01:00
|
|
|
vim_strcat((char_u *)msg_buf, (char_u *)_(" (Interrupted)"),
|
|
|
|
MSG_BUF_LEN);
|
2004-06-13 20:20:40 +00:00
|
|
|
if (msg(msg_buf))
|
|
|
|
{
|
2019-01-19 17:43:09 +01:00
|
|
|
set_keep_msg((char_u *)msg_buf, 0);
|
2005-01-25 22:18:08 +00:00
|
|
|
keep_msg_more = TRUE;
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* flush map and typeahead buffers and give a warning for an error
|
|
|
|
*/
|
|
|
|
void
|
2016-01-30 19:39:49 +01:00
|
|
|
beep_flush(void)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
if (emsg_silent == 0)
|
|
|
|
{
|
2018-10-07 23:16:36 +02:00
|
|
|
flush_buffers(FLUSH_MINIMAL);
|
2015-07-21 17:53:25 +02:00
|
|
|
vim_beep(BO_ERROR);
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2015-07-21 17:53:25 +02:00
|
|
|
* Give a warning for an error.
|
2004-06-13 20:20:40 +00:00
|
|
|
*/
|
|
|
|
void
|
2016-01-30 19:39:49 +01:00
|
|
|
vim_beep(
|
|
|
|
unsigned val) /* one of the BO_ values, e.g., BO_OPER */
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
2018-02-13 12:26:14 +01:00
|
|
|
#ifdef FEAT_EVAL
|
|
|
|
called_vim_beep = TRUE;
|
|
|
|
#endif
|
|
|
|
|
2004-06-13 20:20:40 +00:00
|
|
|
if (emsg_silent == 0)
|
|
|
|
{
|
2015-07-21 17:53:25 +02:00
|
|
|
if (!((bo_flags & val) || (bo_flags & BO_ALL)))
|
|
|
|
{
|
2017-06-27 17:09:37 +02:00
|
|
|
#ifdef ELAPSED_FUNC
|
|
|
|
static int did_init = FALSE;
|
2019-01-17 22:28:22 +01:00
|
|
|
static elapsed_T start_tv;
|
2017-06-27 17:09:37 +02:00
|
|
|
|
|
|
|
/* Only beep once per half a second, otherwise a sequence of beeps
|
|
|
|
* would freeze Vim. */
|
|
|
|
if (!did_init || ELAPSED_FUNC(start_tv) > 500)
|
|
|
|
{
|
|
|
|
did_init = TRUE;
|
|
|
|
ELAPSED_INIT(start_tv);
|
|
|
|
#endif
|
|
|
|
if (p_vb
|
2004-06-13 20:20:40 +00:00
|
|
|
#ifdef FEAT_GUI
|
2017-06-27 17:09:37 +02:00
|
|
|
/* While the GUI is starting up the termcap is set for
|
|
|
|
* the GUI but the output still goes to a terminal. */
|
|
|
|
&& !(gui.in_use && gui.starting)
|
|
|
|
#endif
|
|
|
|
)
|
2018-02-22 21:07:09 +01:00
|
|
|
{
|
2017-06-27 17:09:37 +02:00
|
|
|
out_str_cf(T_VB);
|
2018-02-22 21:07:09 +01:00
|
|
|
#ifdef FEAT_VTP
|
|
|
|
/* No restore color information, refresh the screen. */
|
|
|
|
if (has_vtp_working() != 0
|
|
|
|
# ifdef FEAT_TERMGUICOLORS
|
2018-05-01 15:47:38 +02:00
|
|
|
&& (p_tgc || (!p_tgc && t_colors >= 256))
|
2018-02-22 21:07:09 +01:00
|
|
|
# endif
|
|
|
|
)
|
|
|
|
{
|
|
|
|
redraw_later(CLEAR);
|
|
|
|
update_screen(0);
|
|
|
|
redrawcmd();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
2017-06-27 17:09:37 +02:00
|
|
|
else
|
|
|
|
out_char(BELL);
|
|
|
|
#ifdef ELAPSED_FUNC
|
|
|
|
}
|
2004-06-13 20:20:40 +00:00
|
|
|
#endif
|
|
|
|
}
|
2005-02-22 08:56:13 +00:00
|
|
|
|
2018-02-13 12:26:14 +01:00
|
|
|
/* When 'debug' contains "beep" produce a message. If we are sourcing
|
|
|
|
* a script or executing a function give the user a hint where the beep
|
|
|
|
* comes from. */
|
2005-02-22 08:56:13 +00:00
|
|
|
if (vim_strchr(p_debug, 'e') != NULL)
|
|
|
|
{
|
2017-03-16 17:23:31 +01:00
|
|
|
msg_source(HL_ATTR(HLF_W));
|
2019-01-19 17:43:09 +01:00
|
|
|
msg_attr(_("Beep!"), HL_ATTR(HLF_W));
|
2005-02-22 08:56:13 +00:00
|
|
|
}
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* To get the "real" home directory:
|
|
|
|
* - get value of $HOME
|
|
|
|
* For Unix:
|
|
|
|
* - go to that directory
|
|
|
|
* - do mch_dirname() to get the real name of that directory.
|
|
|
|
* This also works with mounts and links.
|
|
|
|
* Don't do this for MS-DOS, it will change the "current dir" for a drive.
|
2018-11-16 19:39:50 +01:00
|
|
|
* For Windows:
|
|
|
|
* This code is duplicated in init_homedir() in dosinst.c. Keep in sync!
|
2004-06-13 20:20:40 +00:00
|
|
|
*/
|
|
|
|
static char_u *homedir = NULL;
|
|
|
|
|
|
|
|
void
|
2016-01-30 19:39:49 +01:00
|
|
|
init_homedir(void)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
char_u *var;
|
|
|
|
|
2005-02-26 23:04:13 +00:00
|
|
|
/* In case we are called a second time (when 'encoding' changes). */
|
2018-02-10 18:45:26 +01:00
|
|
|
VIM_CLEAR(homedir);
|
2005-02-26 23:04:13 +00:00
|
|
|
|
2004-06-13 20:20:40 +00:00
|
|
|
#ifdef VMS
|
|
|
|
var = mch_getenv((char_u *)"SYS$LOGIN");
|
|
|
|
#else
|
|
|
|
var = mch_getenv((char_u *)"HOME");
|
|
|
|
#endif
|
|
|
|
|
2019-02-17 17:44:42 +01:00
|
|
|
#ifdef MSWIN
|
2017-08-29 22:08:53 +02:00
|
|
|
/*
|
|
|
|
* Typically, $HOME is not defined on Windows, unless the user has
|
|
|
|
* specifically defined it for Vim's sake. However, on Windows NT
|
|
|
|
* platforms, $HOMEDRIVE and $HOMEPATH are automatically defined for
|
|
|
|
* each user. Try constructing $HOME from these.
|
|
|
|
*/
|
2017-08-30 13:22:28 +02:00
|
|
|
if (var == NULL || *var == NUL)
|
2017-08-29 22:08:53 +02:00
|
|
|
{
|
|
|
|
char_u *homedrive, *homepath;
|
|
|
|
|
|
|
|
homedrive = mch_getenv((char_u *)"HOMEDRIVE");
|
|
|
|
homepath = mch_getenv((char_u *)"HOMEPATH");
|
|
|
|
if (homepath == NULL || *homepath == NUL)
|
|
|
|
homepath = (char_u *)"\\";
|
|
|
|
if (homedrive != NULL
|
|
|
|
&& STRLEN(homedrive) + STRLEN(homepath) < MAXPATHL)
|
|
|
|
{
|
|
|
|
sprintf((char *)NameBuff, "%s%s", homedrive, homepath);
|
|
|
|
if (NameBuff[0] != NUL)
|
|
|
|
var = NameBuff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (var == NULL)
|
|
|
|
var = mch_getenv((char_u *)"USERPROFILE");
|
|
|
|
|
2004-06-13 20:20:40 +00:00
|
|
|
/*
|
|
|
|
* Weird but true: $HOME may contain an indirect reference to another
|
|
|
|
* variable, esp. "%USERPROFILE%". Happens when $USERPROFILE isn't set
|
|
|
|
* when $HOME is being set.
|
|
|
|
*/
|
|
|
|
if (var != NULL && *var == '%')
|
|
|
|
{
|
|
|
|
char_u *p;
|
|
|
|
char_u *exp;
|
|
|
|
|
|
|
|
p = vim_strchr(var + 1, '%');
|
|
|
|
if (p != NULL)
|
|
|
|
{
|
2005-07-18 21:58:11 +00:00
|
|
|
vim_strncpy(NameBuff, var + 1, p - (var + 1));
|
2004-06-13 20:20:40 +00:00
|
|
|
exp = mch_getenv(NameBuff);
|
|
|
|
if (exp != NULL && *exp != NUL
|
|
|
|
&& STRLEN(exp) + STRLEN(p) < MAXPATHL)
|
|
|
|
{
|
2005-05-19 21:08:39 +00:00
|
|
|
vim_snprintf((char *)NameBuff, MAXPATHL, "%s%s", exp, p + 1);
|
2004-06-13 20:20:40 +00:00
|
|
|
var = NameBuff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-29 22:08:53 +02:00
|
|
|
if (var != NULL && *var == NUL) /* empty is same as not set */
|
|
|
|
var = NULL;
|
2005-02-26 23:04:13 +00:00
|
|
|
|
|
|
|
if (enc_utf8 && var != NULL)
|
|
|
|
{
|
|
|
|
int len;
|
2011-04-28 17:48:44 +02:00
|
|
|
char_u *pp = NULL;
|
2005-02-26 23:04:13 +00:00
|
|
|
|
|
|
|
/* Convert from active codepage to UTF-8. Other conversions are
|
|
|
|
* not done, because they would fail for non-ASCII characters. */
|
2006-04-17 22:14:47 +00:00
|
|
|
acp_to_enc(var, (int)STRLEN(var), &pp, &len);
|
2005-02-26 23:04:13 +00:00
|
|
|
if (pp != NULL)
|
|
|
|
{
|
|
|
|
homedir = pp;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2004-06-13 20:20:40 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Default home dir is C:/
|
|
|
|
* Best assumption we can make in such a situation.
|
|
|
|
*/
|
|
|
|
if (var == NULL)
|
2016-02-16 15:06:59 +01:00
|
|
|
var = (char_u *)"C:/";
|
2004-06-13 20:20:40 +00:00
|
|
|
#endif
|
2017-08-29 22:08:53 +02:00
|
|
|
|
2004-06-13 20:20:40 +00:00
|
|
|
if (var != NULL)
|
|
|
|
{
|
|
|
|
#ifdef UNIX
|
|
|
|
/*
|
|
|
|
* Change to the directory and get the actual path. This resolves
|
|
|
|
* links. Don't do it when we can't return.
|
|
|
|
*/
|
|
|
|
if (mch_dirname(NameBuff, MAXPATHL) == OK
|
|
|
|
&& mch_chdir((char *)NameBuff) == 0)
|
|
|
|
{
|
|
|
|
if (!mch_chdir((char *)var) && mch_dirname(IObuff, IOSIZE) == OK)
|
|
|
|
var = IObuff;
|
|
|
|
if (mch_chdir((char *)NameBuff) != 0)
|
2019-01-13 23:38:42 +01:00
|
|
|
emsg(_(e_prev_dir));
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
homedir = vim_strsave(var);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-06-25 23:04:51 +00:00
|
|
|
#if defined(EXITFREE) || defined(PROTO)
|
|
|
|
void
|
2016-01-30 19:39:49 +01:00
|
|
|
free_homedir(void)
|
2005-06-25 23:04:51 +00:00
|
|
|
{
|
|
|
|
vim_free(homedir);
|
|
|
|
}
|
2012-08-15 14:05:05 +02:00
|
|
|
|
|
|
|
# ifdef FEAT_CMDL_COMPL
|
|
|
|
void
|
2016-01-30 19:39:49 +01:00
|
|
|
free_users(void)
|
2012-08-15 14:05:05 +02:00
|
|
|
{
|
|
|
|
ga_clear_strings(&ga_users);
|
|
|
|
}
|
|
|
|
# endif
|
2005-06-25 23:04:51 +00:00
|
|
|
#endif
|
|
|
|
|
2007-09-26 20:36:32 +00:00
|
|
|
/*
|
|
|
|
* Call expand_env() and store the result in an allocated string.
|
|
|
|
* This is not very memory efficient, this expects the result to be freed
|
|
|
|
* again soon.
|
|
|
|
*/
|
|
|
|
char_u *
|
2016-01-30 19:39:49 +01:00
|
|
|
expand_env_save(char_u *src)
|
2007-09-26 20:36:32 +00:00
|
|
|
{
|
|
|
|
return expand_env_save_opt(src, FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Idem, but when "one" is TRUE handle the string as one file name, only
|
|
|
|
* expand "~" at the start.
|
|
|
|
*/
|
|
|
|
char_u *
|
2016-01-30 19:39:49 +01:00
|
|
|
expand_env_save_opt(char_u *src, int one)
|
2007-09-26 20:36:32 +00:00
|
|
|
{
|
|
|
|
char_u *p;
|
|
|
|
|
|
|
|
p = alloc(MAXPATHL);
|
|
|
|
if (p != NULL)
|
|
|
|
expand_env_esc(src, p, MAXPATHL, FALSE, one, NULL);
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
2004-06-13 20:20:40 +00:00
|
|
|
/*
|
|
|
|
* Expand environment variable with path name.
|
|
|
|
* "~/" is also expanded, using $HOME. For Unix "~user/" is expanded.
|
2007-09-26 20:36:32 +00:00
|
|
|
* Skips over "\ ", "\~" and "\$" (not for Win32 though).
|
2004-06-13 20:20:40 +00:00
|
|
|
* If anything fails no expansion is done and dst equals src.
|
|
|
|
*/
|
|
|
|
void
|
2016-01-30 19:39:49 +01:00
|
|
|
expand_env(
|
|
|
|
char_u *src, /* input string e.g. "$HOME/vim.hlp" */
|
|
|
|
char_u *dst, /* where to put the result */
|
|
|
|
int dstlen) /* maximum length of the result */
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
2007-09-26 20:36:32 +00:00
|
|
|
expand_env_esc(src, dst, dstlen, FALSE, FALSE, NULL);
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2016-01-30 19:39:49 +01:00
|
|
|
expand_env_esc(
|
|
|
|
char_u *srcp, /* input string e.g. "$HOME/vim.hlp" */
|
|
|
|
char_u *dst, /* where to put the result */
|
|
|
|
int dstlen, /* maximum length of the result */
|
|
|
|
int esc, /* escape spaces in expanded variables */
|
|
|
|
int one, /* "srcp" is one file name */
|
|
|
|
char_u *startstr) /* start again after this (can be NULL) */
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
2005-06-28 23:32:02 +00:00
|
|
|
char_u *src;
|
2004-06-13 20:20:40 +00:00
|
|
|
char_u *tail;
|
|
|
|
int c;
|
|
|
|
char_u *var;
|
|
|
|
int copy_char;
|
|
|
|
int mustfree; /* var was allocated, need to free it later */
|
|
|
|
int at_start = TRUE; /* at start of a name */
|
2005-06-28 23:32:02 +00:00
|
|
|
int startstr_len = 0;
|
2004-06-13 20:20:40 +00:00
|
|
|
|
2005-06-28 23:32:02 +00:00
|
|
|
if (startstr != NULL)
|
2006-04-17 22:14:47 +00:00
|
|
|
startstr_len = (int)STRLEN(startstr);
|
2005-06-28 23:32:02 +00:00
|
|
|
|
|
|
|
src = skipwhite(srcp);
|
2004-06-13 20:20:40 +00:00
|
|
|
--dstlen; /* leave one char space for "\," */
|
|
|
|
while (*src && dstlen > 0)
|
|
|
|
{
|
2015-08-25 14:21:19 +02:00
|
|
|
#ifdef FEAT_EVAL
|
|
|
|
/* Skip over `=expr`. */
|
|
|
|
if (src[0] == '`' && src[1] == '=')
|
|
|
|
{
|
|
|
|
size_t len;
|
|
|
|
|
|
|
|
var = src;
|
|
|
|
src += 2;
|
|
|
|
(void)skip_expr(&src);
|
|
|
|
if (*src == '`')
|
|
|
|
++src;
|
|
|
|
len = src - var;
|
|
|
|
if (len > (size_t)dstlen)
|
|
|
|
len = dstlen;
|
|
|
|
vim_strncpy(dst, var, len);
|
|
|
|
dst += len;
|
2015-09-01 16:25:34 +02:00
|
|
|
dstlen -= (int)len;
|
2015-08-25 14:21:19 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
#endif
|
2004-06-13 20:20:40 +00:00
|
|
|
copy_char = TRUE;
|
2004-09-02 19:12:26 +00:00
|
|
|
if ((*src == '$'
|
|
|
|
#ifdef VMS
|
|
|
|
&& at_start
|
|
|
|
#endif
|
|
|
|
)
|
2016-02-23 14:53:34 +01:00
|
|
|
#if defined(MSWIN)
|
2004-06-13 20:20:40 +00:00
|
|
|
|| *src == '%'
|
|
|
|
#endif
|
|
|
|
|| (*src == '~' && at_start))
|
|
|
|
{
|
|
|
|
mustfree = FALSE;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The variable name is copied into dst temporarily, because it may
|
|
|
|
* be a string in read-only memory and a NUL needs to be appended.
|
|
|
|
*/
|
|
|
|
if (*src != '~') /* environment var */
|
|
|
|
{
|
|
|
|
tail = src + 1;
|
|
|
|
var = dst;
|
|
|
|
c = dstlen - 1;
|
|
|
|
|
|
|
|
#ifdef UNIX
|
|
|
|
/* Unix has ${var-name} type environment vars */
|
|
|
|
if (*tail == '{' && !vim_isIDc('{'))
|
|
|
|
{
|
|
|
|
tail++; /* ignore '{' */
|
|
|
|
while (c-- > 0 && *tail && *tail != '}')
|
|
|
|
*var++ = *tail++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
while (c-- > 0 && *tail != NUL && ((vim_isIDc(*tail))
|
2016-02-23 14:53:34 +01:00
|
|
|
#if defined(MSWIN)
|
2004-06-13 20:20:40 +00:00
|
|
|
|| (*src == '%' && *tail != '%')
|
|
|
|
#endif
|
|
|
|
))
|
|
|
|
*var++ = *tail++;
|
|
|
|
}
|
|
|
|
|
2016-02-23 14:53:34 +01:00
|
|
|
#if defined(MSWIN) || defined(UNIX)
|
2004-06-13 20:20:40 +00:00
|
|
|
# ifdef UNIX
|
|
|
|
if (src[1] == '{' && *tail != '}')
|
|
|
|
# else
|
|
|
|
if (*src == '%' && *tail != '%')
|
|
|
|
# endif
|
|
|
|
var = NULL;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
# ifdef UNIX
|
|
|
|
if (src[1] == '{')
|
|
|
|
# else
|
|
|
|
if (*src == '%')
|
|
|
|
#endif
|
|
|
|
++tail;
|
|
|
|
#endif
|
|
|
|
*var = NUL;
|
|
|
|
var = vim_getenv(dst, &mustfree);
|
2016-02-23 14:53:34 +01:00
|
|
|
#if defined(MSWIN) || defined(UNIX)
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
/* home directory */
|
|
|
|
else if ( src[1] == NUL
|
|
|
|
|| vim_ispathsep(src[1])
|
|
|
|
|| vim_strchr((char_u *)" ,\t\n", src[1]) != NULL)
|
|
|
|
{
|
|
|
|
var = homedir;
|
|
|
|
tail = src + 1;
|
|
|
|
}
|
|
|
|
else /* user directory */
|
|
|
|
{
|
|
|
|
#if defined(UNIX) || (defined(VMS) && defined(USER_HOME))
|
|
|
|
/*
|
|
|
|
* Copy ~user to dst[], so we can put a NUL after it.
|
|
|
|
*/
|
|
|
|
tail = src;
|
|
|
|
var = dst;
|
|
|
|
c = dstlen - 1;
|
|
|
|
while ( c-- > 0
|
|
|
|
&& *tail
|
|
|
|
&& vim_isfilec(*tail)
|
|
|
|
&& !vim_ispathsep(*tail))
|
|
|
|
*var++ = *tail++;
|
|
|
|
*var = NUL;
|
|
|
|
# ifdef UNIX
|
|
|
|
/*
|
|
|
|
* If the system supports getpwnam(), use it.
|
|
|
|
* Otherwise, or if getpwnam() fails, the shell is used to
|
|
|
|
* expand ~user. This is slower and may fail if the shell
|
|
|
|
* does not support ~user (old versions of /bin/sh).
|
|
|
|
*/
|
|
|
|
# if defined(HAVE_GETPWNAM) && defined(HAVE_PWD_H)
|
|
|
|
{
|
2006-01-13 22:35:40 +00:00
|
|
|
/* Note: memory allocated by getpwnam() is never freed.
|
|
|
|
* Calling endpwent() apparently doesn't help. */
|
2017-02-23 17:07:14 +01:00
|
|
|
struct passwd *pw = (*dst == NUL)
|
|
|
|
? NULL : getpwnam((char *)dst + 1);
|
|
|
|
|
|
|
|
var = (pw == NULL) ? NULL : (char_u *)pw->pw_dir;
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
if (var == NULL)
|
|
|
|
# endif
|
|
|
|
{
|
|
|
|
expand_T xpc;
|
|
|
|
|
|
|
|
ExpandInit(&xpc);
|
|
|
|
xpc.xp_context = EXPAND_FILES;
|
|
|
|
var = ExpandOne(&xpc, dst, NULL,
|
|
|
|
WILD_ADD_SLASH|WILD_SILENT, WILD_EXPAND_FREE);
|
|
|
|
mustfree = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
# else /* !UNIX, thus VMS */
|
|
|
|
/*
|
|
|
|
* USER_HOME is a comma-separated list of
|
|
|
|
* directories to search for the user account in.
|
|
|
|
*/
|
|
|
|
{
|
|
|
|
char_u test[MAXPATHL], paths[MAXPATHL];
|
|
|
|
char_u *path, *next_path, *ptr;
|
2016-07-01 17:17:39 +02:00
|
|
|
stat_T st;
|
2004-06-13 20:20:40 +00:00
|
|
|
|
|
|
|
STRCPY(paths, USER_HOME);
|
|
|
|
next_path = paths;
|
|
|
|
while (*next_path)
|
|
|
|
{
|
|
|
|
for (path = next_path; *next_path && *next_path != ',';
|
|
|
|
next_path++);
|
|
|
|
if (*next_path)
|
|
|
|
*next_path++ = NUL;
|
|
|
|
STRCPY(test, path);
|
|
|
|
STRCAT(test, "/");
|
|
|
|
STRCAT(test, dst + 1);
|
|
|
|
if (mch_stat(test, &st) == 0)
|
|
|
|
{
|
|
|
|
var = alloc(STRLEN(test) + 1);
|
|
|
|
STRCPY(var, test);
|
|
|
|
mustfree = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
# endif /* UNIX */
|
|
|
|
#else
|
|
|
|
/* cannot expand user's home directory, so don't try */
|
|
|
|
var = NULL;
|
|
|
|
tail = (char_u *)""; /* for gcc */
|
|
|
|
#endif /* UNIX || VMS */
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef BACKSLASH_IN_FILENAME
|
|
|
|
/* If 'shellslash' is set change backslashes to forward slashes.
|
|
|
|
* Can't use slash_adjust(), p_ssl may be set temporarily. */
|
|
|
|
if (p_ssl && var != NULL && vim_strchr(var, '\\') != NULL)
|
|
|
|
{
|
|
|
|
char_u *p = vim_strsave(var);
|
|
|
|
|
|
|
|
if (p != NULL)
|
|
|
|
{
|
|
|
|
if (mustfree)
|
|
|
|
vim_free(var);
|
|
|
|
var = p;
|
|
|
|
mustfree = TRUE;
|
|
|
|
forward_slash(var);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* If "var" contains white space, escape it with a backslash.
|
|
|
|
* Required for ":e ~/tt" when $HOME includes a space. */
|
|
|
|
if (esc && var != NULL && vim_strpbrk(var, (char_u *)" \t") != NULL)
|
|
|
|
{
|
|
|
|
char_u *p = vim_strsave_escaped(var, (char_u *)" \t");
|
|
|
|
|
|
|
|
if (p != NULL)
|
|
|
|
{
|
|
|
|
if (mustfree)
|
|
|
|
vim_free(var);
|
|
|
|
var = p;
|
|
|
|
mustfree = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (var != NULL && *var != NUL
|
|
|
|
&& (STRLEN(var) + STRLEN(tail) + 1 < (unsigned)dstlen))
|
|
|
|
{
|
|
|
|
STRCPY(dst, var);
|
|
|
|
dstlen -= (int)STRLEN(var);
|
2006-04-17 22:14:47 +00:00
|
|
|
c = (int)STRLEN(var);
|
2004-06-13 20:20:40 +00:00
|
|
|
/* if var[] ends in a path separator and tail[] starts
|
|
|
|
* with it, skip a character */
|
2004-12-19 22:46:22 +00:00
|
|
|
if (*var != NUL && after_pathsep(dst, dst + c)
|
2004-06-13 20:20:40 +00:00
|
|
|
#if defined(BACKSLASH_IN_FILENAME) || defined(AMIGA)
|
|
|
|
&& dst[-1] != ':'
|
|
|
|
#endif
|
|
|
|
&& vim_ispathsep(*tail))
|
|
|
|
++tail;
|
2004-12-19 22:46:22 +00:00
|
|
|
dst += c;
|
2004-06-13 20:20:40 +00:00
|
|
|
src = tail;
|
|
|
|
copy_char = FALSE;
|
|
|
|
}
|
|
|
|
if (mustfree)
|
|
|
|
vim_free(var);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (copy_char) /* copy at least one char */
|
|
|
|
{
|
|
|
|
/*
|
2007-05-10 19:06:20 +00:00
|
|
|
* Recognize the start of a new name, for '~'.
|
2007-09-26 20:36:32 +00:00
|
|
|
* Don't do this when "one" is TRUE, to avoid expanding "~" in
|
|
|
|
* ":edit foo ~ foo".
|
2004-06-13 20:20:40 +00:00
|
|
|
*/
|
|
|
|
at_start = FALSE;
|
|
|
|
if (src[0] == '\\' && src[1] != NUL)
|
|
|
|
{
|
|
|
|
*dst++ = *src++;
|
|
|
|
--dstlen;
|
|
|
|
}
|
2007-09-26 20:36:32 +00:00
|
|
|
else if ((src[0] == ' ' || src[0] == ',') && !one)
|
2004-06-13 20:20:40 +00:00
|
|
|
at_start = TRUE;
|
2017-08-06 18:15:45 +02:00
|
|
|
if (dstlen > 0)
|
|
|
|
{
|
|
|
|
*dst++ = *src++;
|
|
|
|
--dstlen;
|
2005-06-28 23:32:02 +00:00
|
|
|
|
2017-08-06 18:15:45 +02:00
|
|
|
if (startstr != NULL && src - startstr_len >= srcp
|
|
|
|
&& STRNCMP(src - startstr_len, startstr,
|
|
|
|
startstr_len) == 0)
|
|
|
|
at_start = TRUE;
|
|
|
|
}
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
2017-08-06 18:15:45 +02:00
|
|
|
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
*dst = NUL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Vim's version of getenv().
|
|
|
|
* Special handling of $HOME, $VIM and $VIMRUNTIME.
|
2005-03-08 22:43:10 +00:00
|
|
|
* Also does ACP to 'enc' conversion for Win32.
|
2011-04-28 17:48:44 +02:00
|
|
|
* "mustfree" is set to TRUE when returned is allocated, it must be
|
|
|
|
* initialized to FALSE by the caller.
|
2004-06-13 20:20:40 +00:00
|
|
|
*/
|
|
|
|
char_u *
|
2016-01-30 19:39:49 +01:00
|
|
|
vim_getenv(char_u *name, int *mustfree)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
2019-03-30 20:11:50 +01:00
|
|
|
char_u *p = NULL;
|
2004-06-13 20:20:40 +00:00
|
|
|
char_u *pend;
|
|
|
|
int vimruntime;
|
2019-03-30 20:11:50 +01:00
|
|
|
#ifdef MSWIN
|
|
|
|
WCHAR *wn, *wp;
|
2004-06-13 20:20:40 +00:00
|
|
|
|
2019-03-30 20:11:50 +01:00
|
|
|
// use "C:/" when $HOME is not set
|
2004-06-13 20:20:40 +00:00
|
|
|
if (STRCMP(name, "HOME") == 0)
|
|
|
|
return homedir;
|
|
|
|
|
2019-03-30 20:11:50 +01:00
|
|
|
// Use Wide function
|
|
|
|
wn = enc_to_utf16(name, NULL);
|
|
|
|
if (wn == NULL)
|
|
|
|
return NULL;
|
2004-06-13 20:20:40 +00:00
|
|
|
|
2019-03-30 20:11:50 +01:00
|
|
|
wp = _wgetenv(wn);
|
|
|
|
vim_free(wn);
|
|
|
|
|
|
|
|
if (wp != NULL && *wp == NUL) // empty is the same as not set
|
|
|
|
wp = NULL;
|
|
|
|
|
|
|
|
if (wp != NULL)
|
2005-02-26 23:04:13 +00:00
|
|
|
{
|
2019-03-30 20:11:50 +01:00
|
|
|
p = utf16_to_enc(wp, NULL);
|
|
|
|
if (p == NULL)
|
|
|
|
return NULL;
|
2005-02-26 23:04:13 +00:00
|
|
|
|
2019-03-30 20:11:50 +01:00
|
|
|
*mustfree = TRUE;
|
2004-06-13 20:20:40 +00:00
|
|
|
return p;
|
2005-02-26 23:04:13 +00:00
|
|
|
}
|
2019-03-30 20:11:50 +01:00
|
|
|
#else
|
|
|
|
p = mch_getenv(name);
|
|
|
|
if (p != NULL && *p == NUL) // empty is the same as not set
|
|
|
|
p = NULL;
|
|
|
|
|
|
|
|
if (p != NULL)
|
|
|
|
return p;
|
|
|
|
#endif
|
2004-06-13 20:20:40 +00:00
|
|
|
|
2019-03-30 20:11:50 +01:00
|
|
|
// handling $VIMRUNTIME and $VIM is below, bail out if it's another name.
|
2004-06-13 20:20:40 +00:00
|
|
|
vimruntime = (STRCMP(name, "VIMRUNTIME") == 0);
|
|
|
|
if (!vimruntime && STRCMP(name, "VIM") != 0)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* When expanding $VIMRUNTIME fails, try using $VIM/vim<version> or $VIM.
|
|
|
|
* Don't do this when default_vimruntime_dir is non-empty.
|
|
|
|
*/
|
|
|
|
if (vimruntime
|
|
|
|
#ifdef HAVE_PATHDEF
|
|
|
|
&& *default_vimruntime_dir == NUL
|
|
|
|
#endif
|
|
|
|
)
|
|
|
|
{
|
2019-03-30 20:11:50 +01:00
|
|
|
#ifdef MSWIN
|
|
|
|
// Use Wide function
|
|
|
|
wp = _wgetenv(L"VIM");
|
|
|
|
if (wp != NULL && *wp == NUL) // empty is the same as not set
|
|
|
|
wp = NULL;
|
|
|
|
if (wp != NULL)
|
|
|
|
{
|
|
|
|
char_u *q = utf16_to_enc(wp, NULL);
|
|
|
|
if (q != NULL)
|
|
|
|
{
|
|
|
|
p = vim_version_dir(q);
|
|
|
|
*mustfree = TRUE;
|
|
|
|
if (p == NULL)
|
|
|
|
p = q;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#else
|
2004-06-13 20:20:40 +00:00
|
|
|
p = mch_getenv((char_u *)"VIM");
|
2019-03-30 20:11:50 +01:00
|
|
|
if (p != NULL && *p == NUL) // empty is the same as not set
|
2004-06-13 20:20:40 +00:00
|
|
|
p = NULL;
|
|
|
|
if (p != NULL)
|
|
|
|
{
|
|
|
|
p = vim_version_dir(p);
|
|
|
|
if (p != NULL)
|
|
|
|
*mustfree = TRUE;
|
|
|
|
else
|
|
|
|
p = mch_getenv((char_u *)"VIM");
|
|
|
|
}
|
2019-03-30 20:11:50 +01:00
|
|
|
#endif
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* When expanding $VIM or $VIMRUNTIME fails, try using:
|
|
|
|
* - the directory name from 'helpfile' (unless it contains '$')
|
|
|
|
* - the executable name from argv[0]
|
|
|
|
*/
|
|
|
|
if (p == NULL)
|
|
|
|
{
|
|
|
|
if (p_hf != NULL && vim_strchr(p_hf, '$') == NULL)
|
|
|
|
p = p_hf;
|
|
|
|
#ifdef USE_EXE_NAME
|
|
|
|
/*
|
|
|
|
* Use the name of the executable, obtained from argv[0].
|
|
|
|
*/
|
|
|
|
else
|
|
|
|
p = exe_name;
|
|
|
|
#endif
|
|
|
|
if (p != NULL)
|
|
|
|
{
|
|
|
|
/* remove the file name */
|
|
|
|
pend = gettail(p);
|
|
|
|
|
|
|
|
/* remove "doc/" from 'helpfile', if present */
|
|
|
|
if (p == p_hf)
|
|
|
|
pend = remove_tail(p, pend, (char_u *)"doc");
|
|
|
|
|
|
|
|
#ifdef USE_EXE_NAME
|
|
|
|
# ifdef MACOS_X
|
2006-03-15 23:04:43 +00:00
|
|
|
/* remove "MacOS" from exe_name and add "Resources/vim" */
|
2004-06-13 20:20:40 +00:00
|
|
|
if (p == exe_name)
|
|
|
|
{
|
|
|
|
char_u *pend1;
|
2006-03-15 23:04:43 +00:00
|
|
|
char_u *pnew;
|
|
|
|
|
|
|
|
pend1 = remove_tail(p, pend, (char_u *)"MacOS");
|
|
|
|
if (pend1 != pend)
|
|
|
|
{
|
|
|
|
pnew = alloc((unsigned)(pend1 - p) + 15);
|
|
|
|
if (pnew != NULL)
|
|
|
|
{
|
|
|
|
STRNCPY(pnew, p, (pend1 - p));
|
|
|
|
STRCPY(pnew + (pend1 - p), "Resources/vim");
|
|
|
|
p = pnew;
|
|
|
|
pend = p + STRLEN(p);
|
|
|
|
}
|
|
|
|
}
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
# endif
|
|
|
|
/* remove "src/" from exe_name, if present */
|
|
|
|
if (p == exe_name)
|
|
|
|
pend = remove_tail(p, pend, (char_u *)"src");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* for $VIM, remove "runtime/" or "vim54/", if present */
|
|
|
|
if (!vimruntime)
|
|
|
|
{
|
|
|
|
pend = remove_tail(p, pend, (char_u *)RUNTIME_DIRNAME);
|
|
|
|
pend = remove_tail(p, pend, (char_u *)VIM_VERSION_NODOT);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* remove trailing path separator */
|
2004-12-19 22:46:22 +00:00
|
|
|
if (pend > p && after_pathsep(p, pend))
|
2004-06-13 20:20:40 +00:00
|
|
|
--pend;
|
|
|
|
|
2006-03-15 23:04:43 +00:00
|
|
|
#ifdef MACOS_X
|
|
|
|
if (p == exe_name || p == p_hf)
|
|
|
|
#endif
|
|
|
|
/* check that the result is a directory name */
|
|
|
|
p = vim_strnsave(p, (int)(pend - p));
|
2004-06-13 20:20:40 +00:00
|
|
|
|
|
|
|
if (p != NULL && !mch_isdir(p))
|
2018-02-10 18:45:26 +01:00
|
|
|
VIM_CLEAR(p);
|
2004-06-13 20:20:40 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
#ifdef USE_EXE_NAME
|
|
|
|
/* may add "/vim54" or "/runtime" if it exists */
|
|
|
|
if (vimruntime && (pend = vim_version_dir(p)) != NULL)
|
|
|
|
{
|
|
|
|
vim_free(p);
|
|
|
|
p = pend;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
*mustfree = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef HAVE_PATHDEF
|
|
|
|
/* When there is a pathdef.c file we can use default_vim_dir and
|
|
|
|
* default_vimruntime_dir */
|
|
|
|
if (p == NULL)
|
|
|
|
{
|
|
|
|
/* Only use default_vimruntime_dir when it is not empty */
|
|
|
|
if (vimruntime && *default_vimruntime_dir != NUL)
|
|
|
|
{
|
|
|
|
p = default_vimruntime_dir;
|
|
|
|
*mustfree = FALSE;
|
|
|
|
}
|
|
|
|
else if (*default_vim_dir != NUL)
|
|
|
|
{
|
|
|
|
if (vimruntime && (p = vim_version_dir(default_vim_dir)) != NULL)
|
|
|
|
*mustfree = TRUE;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
p = default_vim_dir;
|
|
|
|
*mustfree = FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set the environment variable, so that the new value can be found fast
|
|
|
|
* next time, and others can also use it (e.g. Perl).
|
|
|
|
*/
|
|
|
|
if (p != NULL)
|
|
|
|
{
|
|
|
|
if (vimruntime)
|
|
|
|
{
|
|
|
|
vim_setenv((char_u *)"VIMRUNTIME", p);
|
|
|
|
didset_vimruntime = TRUE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
vim_setenv((char_u *)"VIM", p);
|
|
|
|
didset_vim = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check if the directory "vimdir/<version>" or "vimdir/runtime" exists.
|
|
|
|
* Return NULL if not, return its name in allocated memory otherwise.
|
|
|
|
*/
|
|
|
|
static char_u *
|
2016-01-30 19:39:49 +01:00
|
|
|
vim_version_dir(char_u *vimdir)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
char_u *p;
|
|
|
|
|
|
|
|
if (vimdir == NULL || *vimdir == NUL)
|
|
|
|
return NULL;
|
|
|
|
p = concat_fnames(vimdir, (char_u *)VIM_VERSION_NODOT, TRUE);
|
|
|
|
if (p != NULL && mch_isdir(p))
|
|
|
|
return p;
|
|
|
|
vim_free(p);
|
|
|
|
p = concat_fnames(vimdir, (char_u *)RUNTIME_DIRNAME, TRUE);
|
|
|
|
if (p != NULL && mch_isdir(p))
|
|
|
|
return p;
|
|
|
|
vim_free(p);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If the string between "p" and "pend" ends in "name/", return "pend" minus
|
|
|
|
* the length of "name/". Otherwise return "pend".
|
|
|
|
*/
|
|
|
|
static char_u *
|
2016-01-30 19:39:49 +01:00
|
|
|
remove_tail(char_u *p, char_u *pend, char_u *name)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
int len = (int)STRLEN(name) + 1;
|
|
|
|
char_u *newend = pend - len;
|
|
|
|
|
|
|
|
if (newend >= p
|
|
|
|
&& fnamencmp(newend, name, len - 1) == 0
|
2004-12-19 22:46:22 +00:00
|
|
|
&& (newend == p || after_pathsep(p, newend)))
|
2004-06-13 20:20:40 +00:00
|
|
|
return newend;
|
|
|
|
return pend;
|
|
|
|
}
|
|
|
|
|
2019-01-20 15:30:40 +01:00
|
|
|
#if defined(FEAT_EVAL) || defined(PROTO)
|
2018-05-13 15:59:50 +02:00
|
|
|
void
|
|
|
|
vim_unsetenv(char_u *var)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_UNSETENV
|
|
|
|
unsetenv((char *)var);
|
|
|
|
#else
|
2018-05-14 22:58:34 +02:00
|
|
|
vim_setenv(var, (char_u *)"");
|
2018-05-13 15:59:50 +02:00
|
|
|
#endif
|
|
|
|
}
|
2019-01-20 15:30:40 +01:00
|
|
|
#endif
|
2018-05-13 15:59:50 +02:00
|
|
|
|
|
|
|
|
2004-06-13 20:20:40 +00:00
|
|
|
/*
|
|
|
|
* Our portable version of setenv.
|
|
|
|
*/
|
|
|
|
void
|
2016-01-30 19:39:49 +01:00
|
|
|
vim_setenv(char_u *name, char_u *val)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
#ifdef HAVE_SETENV
|
|
|
|
mch_setenv((char *)name, (char *)val, 1);
|
|
|
|
#else
|
|
|
|
char_u *envbuf;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Putenv does not copy the string, it has to remain
|
|
|
|
* valid. The allocated memory will never be freed.
|
|
|
|
*/
|
|
|
|
envbuf = alloc((unsigned)(STRLEN(name) + STRLEN(val) + 2));
|
|
|
|
if (envbuf != NULL)
|
|
|
|
{
|
|
|
|
sprintf((char *)envbuf, "%s=%s", name, val);
|
|
|
|
putenv((char *)envbuf);
|
|
|
|
}
|
|
|
|
#endif
|
2012-02-29 13:49:09 +01:00
|
|
|
#ifdef FEAT_GETTEXT
|
|
|
|
/*
|
|
|
|
* When setting $VIMRUNTIME adjust the directory to find message
|
|
|
|
* translations to $VIMRUNTIME/lang.
|
|
|
|
*/
|
|
|
|
if (*val != NUL && STRICMP(name, "VIMRUNTIME") == 0)
|
|
|
|
{
|
|
|
|
char_u *buf = concat_str(val, (char_u *)"/lang");
|
|
|
|
|
|
|
|
if (buf != NULL)
|
|
|
|
{
|
|
|
|
bindtextdomain(VIMPACKAGE, (char *)buf);
|
|
|
|
vim_free(buf);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
|
|
|
|
/*
|
|
|
|
* Function given to ExpandGeneric() to obtain an environment variable name.
|
|
|
|
*/
|
|
|
|
char_u *
|
2016-01-30 19:39:49 +01:00
|
|
|
get_env_name(
|
|
|
|
expand_T *xp UNUSED,
|
|
|
|
int idx)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
2017-10-28 21:11:06 +02:00
|
|
|
# if defined(AMIGA)
|
2004-06-13 20:20:40 +00:00
|
|
|
/*
|
2017-10-28 21:11:06 +02:00
|
|
|
* No environ[] on the Amiga.
|
2004-06-13 20:20:40 +00:00
|
|
|
*/
|
|
|
|
return NULL;
|
|
|
|
# else
|
|
|
|
# ifndef __WIN32__
|
|
|
|
/* Borland C++ 5.2 has this in a header file. */
|
|
|
|
extern char **environ;
|
|
|
|
# endif
|
2004-07-16 20:18:37 +00:00
|
|
|
# define ENVNAMELEN 100
|
|
|
|
static char_u name[ENVNAMELEN];
|
2004-06-13 20:20:40 +00:00
|
|
|
char_u *str;
|
|
|
|
int n;
|
|
|
|
|
|
|
|
str = (char_u *)environ[idx];
|
|
|
|
if (str == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2004-07-16 20:18:37 +00:00
|
|
|
for (n = 0; n < ENVNAMELEN - 1; ++n)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
if (str[n] == '=' || str[n] == NUL)
|
|
|
|
break;
|
|
|
|
name[n] = str[n];
|
|
|
|
}
|
|
|
|
name[n] = NUL;
|
|
|
|
return name;
|
|
|
|
# endif
|
|
|
|
}
|
2012-08-15 14:05:05 +02:00
|
|
|
|
2018-09-10 19:03:05 +02:00
|
|
|
/*
|
|
|
|
* Add a user name to the list of users in ga_users.
|
|
|
|
* Do nothing if user name is NULL or empty.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
add_user(char_u *user, int need_copy)
|
|
|
|
{
|
|
|
|
char_u *user_copy = (user != NULL && need_copy)
|
|
|
|
? vim_strsave(user) : user;
|
|
|
|
|
|
|
|
if (user_copy == NULL || *user_copy == NUL || ga_grow(&ga_users, 1) == FAIL)
|
|
|
|
{
|
|
|
|
if (need_copy)
|
|
|
|
vim_free(user);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
((char_u **)(ga_users.ga_data))[ga_users.ga_len++] = user_copy;
|
|
|
|
}
|
|
|
|
|
2012-08-15 14:05:05 +02:00
|
|
|
/*
|
|
|
|
* Find all user names for user completion.
|
|
|
|
* Done only once and then cached.
|
|
|
|
*/
|
|
|
|
static void
|
2016-01-30 19:39:49 +01:00
|
|
|
init_users(void)
|
2013-06-16 22:49:14 +02:00
|
|
|
{
|
2012-08-15 14:05:05 +02:00
|
|
|
static int lazy_init_done = FALSE;
|
|
|
|
|
|
|
|
if (lazy_init_done)
|
|
|
|
return;
|
|
|
|
|
|
|
|
lazy_init_done = TRUE;
|
|
|
|
ga_init2(&ga_users, sizeof(char_u *), 20);
|
|
|
|
|
|
|
|
# if defined(HAVE_GETPWENT) && defined(HAVE_PWD_H)
|
|
|
|
{
|
|
|
|
struct passwd* pw;
|
|
|
|
|
|
|
|
setpwent();
|
|
|
|
while ((pw = getpwent()) != NULL)
|
2018-09-10 19:03:05 +02:00
|
|
|
add_user((char_u *)pw->pw_name, TRUE);
|
2012-08-15 14:05:05 +02:00
|
|
|
endpwent();
|
|
|
|
}
|
2019-02-17 17:44:42 +01:00
|
|
|
# elif defined(MSWIN)
|
2018-06-19 18:58:07 +02:00
|
|
|
{
|
|
|
|
DWORD nusers = 0, ntotal = 0, i;
|
|
|
|
PUSER_INFO_0 uinfo;
|
|
|
|
|
|
|
|
if (NetUserEnum(NULL, 0, 0, (LPBYTE *) &uinfo, MAX_PREFERRED_LENGTH,
|
|
|
|
&nusers, &ntotal, NULL) == NERR_Success)
|
|
|
|
{
|
|
|
|
for (i = 0; i < nusers; i++)
|
2018-09-10 19:03:05 +02:00
|
|
|
add_user(utf16_to_enc(uinfo[i].usri0_name, NULL), FALSE);
|
|
|
|
|
|
|
|
NetApiBufferFree(uinfo);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
# endif
|
|
|
|
# if defined(HAVE_GETPWNAM)
|
|
|
|
{
|
|
|
|
char_u *user_env = mch_getenv((char_u *)"USER");
|
|
|
|
|
|
|
|
// The $USER environment variable may be a valid remote user name (NIS,
|
|
|
|
// LDAP) not already listed by getpwent(), as getpwent() only lists
|
|
|
|
// local user names. If $USER is not already listed, check whether it
|
|
|
|
// is a valid remote user name using getpwnam() and if it is, add it to
|
|
|
|
// the list of user names.
|
|
|
|
|
|
|
|
if (user_env != NULL && *user_env != NUL)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < ga_users.ga_len; i++)
|
2018-06-19 18:58:07 +02:00
|
|
|
{
|
2018-09-10 19:03:05 +02:00
|
|
|
char_u *local_user = ((char_u **)ga_users.ga_data)[i];
|
|
|
|
|
|
|
|
if (STRCMP(local_user, user_env) == 0)
|
2018-06-19 18:58:07 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2018-09-10 19:03:05 +02:00
|
|
|
if (i == ga_users.ga_len)
|
|
|
|
{
|
|
|
|
struct passwd *pw = getpwnam((char *)user_env);
|
|
|
|
|
|
|
|
if (pw != NULL)
|
|
|
|
add_user((char_u *)pw->pw_name, TRUE);
|
|
|
|
}
|
2018-06-19 18:58:07 +02:00
|
|
|
}
|
|
|
|
}
|
2012-08-15 14:05:05 +02:00
|
|
|
# endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Function given to ExpandGeneric() to obtain an user names.
|
|
|
|
*/
|
|
|
|
char_u*
|
2016-01-30 19:39:49 +01:00
|
|
|
get_users(expand_T *xp UNUSED, int idx)
|
2012-08-15 14:05:05 +02:00
|
|
|
{
|
|
|
|
init_users();
|
|
|
|
if (idx < ga_users.ga_len)
|
|
|
|
return ((char_u **)ga_users.ga_data)[idx];
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check whether name matches a user name. Return:
|
|
|
|
* 0 if name does not match any user name.
|
|
|
|
* 1 if name partially matches the beginning of a user name.
|
|
|
|
* 2 is name fully matches a user name.
|
|
|
|
*/
|
2018-07-07 16:41:13 +02:00
|
|
|
int
|
|
|
|
match_user(char_u *name)
|
2012-08-15 14:05:05 +02:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int n = (int)STRLEN(name);
|
|
|
|
int result = 0;
|
|
|
|
|
|
|
|
init_users();
|
|
|
|
for (i = 0; i < ga_users.ga_len; i++)
|
|
|
|
{
|
|
|
|
if (STRCMP(((char_u **)ga_users.ga_data)[i], name) == 0)
|
|
|
|
return 2; /* full match */
|
|
|
|
if (STRNCMP(((char_u **)ga_users.ga_data)[i], name, n) == 0)
|
|
|
|
result = 1; /* partial match */
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
2004-06-13 20:20:40 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Replace home directory by "~" in each space or comma separated file name in
|
|
|
|
* 'src'.
|
|
|
|
* If anything fails (except when out of space) dst equals src.
|
|
|
|
*/
|
|
|
|
void
|
2016-01-30 19:39:49 +01:00
|
|
|
home_replace(
|
|
|
|
buf_T *buf, /* when not NULL, check for help files */
|
|
|
|
char_u *src, /* input file name */
|
|
|
|
char_u *dst, /* where to put the result */
|
|
|
|
int dstlen, /* maximum length of the result */
|
|
|
|
int one) /* if TRUE, only replace one file name, include
|
2004-06-13 20:20:40 +00:00
|
|
|
spaces and commas in the file name. */
|
|
|
|
{
|
|
|
|
size_t dirlen = 0, envlen = 0;
|
|
|
|
size_t len;
|
2012-06-20 14:02:27 +02:00
|
|
|
char_u *homedir_env, *homedir_env_orig;
|
2004-06-13 20:20:40 +00:00
|
|
|
char_u *p;
|
|
|
|
|
|
|
|
if (src == NULL)
|
|
|
|
{
|
|
|
|
*dst = NUL;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If the file is a help file, remove the path completely.
|
|
|
|
*/
|
|
|
|
if (buf != NULL && buf->b_help)
|
|
|
|
{
|
2017-08-05 23:00:53 +02:00
|
|
|
vim_snprintf((char *)dst, dstlen, "%s", gettail(src));
|
2004-06-13 20:20:40 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We check both the value of the $HOME environment variable and the
|
|
|
|
* "real" home directory.
|
|
|
|
*/
|
|
|
|
if (homedir != NULL)
|
|
|
|
dirlen = STRLEN(homedir);
|
|
|
|
|
|
|
|
#ifdef VMS
|
2012-06-20 14:02:27 +02:00
|
|
|
homedir_env_orig = homedir_env = mch_getenv((char_u *)"SYS$LOGIN");
|
2004-06-13 20:20:40 +00:00
|
|
|
#else
|
2012-06-20 14:02:27 +02:00
|
|
|
homedir_env_orig = homedir_env = mch_getenv((char_u *)"HOME");
|
2017-08-29 22:08:53 +02:00
|
|
|
#endif
|
2019-02-17 17:44:42 +01:00
|
|
|
#ifdef MSWIN
|
2017-08-29 22:08:53 +02:00
|
|
|
if (homedir_env == NULL)
|
|
|
|
homedir_env_orig = homedir_env = mch_getenv((char_u *)"USERPROFILE");
|
2012-06-20 14:02:27 +02:00
|
|
|
#endif
|
2012-07-06 16:49:40 +02:00
|
|
|
/* Empty is the same as not set. */
|
|
|
|
if (homedir_env != NULL && *homedir_env == NUL)
|
|
|
|
homedir_env = NULL;
|
|
|
|
|
2013-06-05 19:35:38 +02:00
|
|
|
#if defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL)
|
2018-12-30 11:38:57 +01:00
|
|
|
if (homedir_env != NULL && *homedir_env == '~')
|
2012-06-20 14:02:27 +02:00
|
|
|
{
|
|
|
|
int usedlen = 0;
|
|
|
|
int flen;
|
|
|
|
char_u *fbuf = NULL;
|
|
|
|
|
|
|
|
flen = (int)STRLEN(homedir_env);
|
2018-07-25 21:19:13 +02:00
|
|
|
(void)modify_fname((char_u *)":p", FALSE, &usedlen,
|
2012-06-20 17:56:09 +02:00
|
|
|
&homedir_env, &fbuf, &flen);
|
2012-06-20 14:02:27 +02:00
|
|
|
flen = (int)STRLEN(homedir_env);
|
|
|
|
if (flen > 0 && vim_ispathsep(homedir_env[flen - 1]))
|
|
|
|
/* Remove the trailing / that is added to a directory. */
|
|
|
|
homedir_env[flen - 1] = NUL;
|
|
|
|
}
|
2004-06-13 20:20:40 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
if (homedir_env != NULL)
|
|
|
|
envlen = STRLEN(homedir_env);
|
|
|
|
|
|
|
|
if (!one)
|
|
|
|
src = skipwhite(src);
|
|
|
|
while (*src && dstlen > 0)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Here we are at the beginning of a file name.
|
|
|
|
* First, check to see if the beginning of the file name matches
|
|
|
|
* $HOME or the "real" home directory. Check that there is a '/'
|
|
|
|
* after the match (so that if e.g. the file is "/home/pieter/bla",
|
|
|
|
* and the home directory is "/home/piet", the file does not end up
|
|
|
|
* as "~er/bla" (which would seem to indicate the file "bla" in user
|
|
|
|
* er's home directory)).
|
|
|
|
*/
|
|
|
|
p = homedir;
|
|
|
|
len = dirlen;
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
if ( len
|
|
|
|
&& fnamencmp(src, p, len) == 0
|
|
|
|
&& (vim_ispathsep(src[len])
|
|
|
|
|| (!one && (src[len] == ',' || src[len] == ' '))
|
|
|
|
|| src[len] == NUL))
|
|
|
|
{
|
|
|
|
src += len;
|
|
|
|
if (--dstlen > 0)
|
|
|
|
*dst++ = '~';
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If it's just the home directory, add "/".
|
|
|
|
*/
|
|
|
|
if (!vim_ispathsep(src[0]) && --dstlen > 0)
|
|
|
|
*dst++ = '/';
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (p == homedir_env)
|
|
|
|
break;
|
|
|
|
p = homedir_env;
|
|
|
|
len = envlen;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* if (!one) skip to separator: space or comma */
|
|
|
|
while (*src && (one || (*src != ',' && *src != ' ')) && --dstlen > 0)
|
|
|
|
*dst++ = *src++;
|
|
|
|
/* skip separator */
|
|
|
|
while ((*src == ' ' || *src == ',') && --dstlen > 0)
|
|
|
|
*dst++ = *src++;
|
|
|
|
}
|
|
|
|
/* if (dstlen == 0) out of space, what to do??? */
|
|
|
|
|
|
|
|
*dst = NUL;
|
2012-06-20 14:02:27 +02:00
|
|
|
|
|
|
|
if (homedir_env != homedir_env_orig)
|
|
|
|
vim_free(homedir_env);
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Like home_replace, store the replaced string in allocated memory.
|
|
|
|
* When something fails, NULL is returned.
|
|
|
|
*/
|
|
|
|
char_u *
|
2016-01-30 19:39:49 +01:00
|
|
|
home_replace_save(
|
|
|
|
buf_T *buf, /* when not NULL, check for help files */
|
|
|
|
char_u *src) /* input file name */
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
char_u *dst;
|
|
|
|
unsigned len;
|
|
|
|
|
|
|
|
len = 3; /* space for "~/" and trailing NUL */
|
|
|
|
if (src != NULL) /* just in case */
|
|
|
|
len += (unsigned)STRLEN(src);
|
|
|
|
dst = alloc(len);
|
|
|
|
if (dst != NULL)
|
|
|
|
home_replace(buf, src, dst, len, TRUE);
|
|
|
|
return dst;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Compare two file names and return:
|
|
|
|
* FPC_SAME if they both exist and are the same file.
|
|
|
|
* FPC_SAMEX if they both don't exist and have the same file name.
|
|
|
|
* FPC_DIFF if they both exist and are different files.
|
|
|
|
* FPC_NOTX if they both don't exist.
|
|
|
|
* FPC_DIFFX if one of them doesn't exist.
|
2019-05-23 21:35:48 +02:00
|
|
|
* For the first name environment variables are expanded if "expandenv" is
|
|
|
|
* TRUE.
|
2004-06-13 20:20:40 +00:00
|
|
|
*/
|
|
|
|
int
|
2016-01-30 19:39:49 +01:00
|
|
|
fullpathcmp(
|
|
|
|
char_u *s1,
|
|
|
|
char_u *s2,
|
2019-05-23 21:35:48 +02:00
|
|
|
int checkname, // when both don't exist, check file names
|
|
|
|
int expandenv)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
#ifdef UNIX
|
|
|
|
char_u exp1[MAXPATHL];
|
|
|
|
char_u full1[MAXPATHL];
|
|
|
|
char_u full2[MAXPATHL];
|
2016-07-01 17:17:39 +02:00
|
|
|
stat_T st1, st2;
|
2004-06-13 20:20:40 +00:00
|
|
|
int r1, r2;
|
|
|
|
|
2019-05-23 21:35:48 +02:00
|
|
|
if (expandenv)
|
|
|
|
expand_env(s1, exp1, MAXPATHL);
|
|
|
|
else
|
|
|
|
vim_strncpy(exp1, s1, MAXPATHL - 1);
|
2004-06-13 20:20:40 +00:00
|
|
|
r1 = mch_stat((char *)exp1, &st1);
|
|
|
|
r2 = mch_stat((char *)s2, &st2);
|
|
|
|
if (r1 != 0 && r2 != 0)
|
|
|
|
{
|
|
|
|
/* if mch_stat() doesn't work, may compare the names */
|
|
|
|
if (checkname)
|
|
|
|
{
|
|
|
|
if (fnamecmp(exp1, s2) == 0)
|
|
|
|
return FPC_SAMEX;
|
|
|
|
r1 = vim_FullName(exp1, full1, MAXPATHL, FALSE);
|
|
|
|
r2 = vim_FullName(s2, full2, MAXPATHL, FALSE);
|
|
|
|
if (r1 == OK && r2 == OK && fnamecmp(full1, full2) == 0)
|
|
|
|
return FPC_SAMEX;
|
|
|
|
}
|
|
|
|
return FPC_NOTX;
|
|
|
|
}
|
|
|
|
if (r1 != 0 || r2 != 0)
|
|
|
|
return FPC_DIFFX;
|
|
|
|
if (st1.st_dev == st2.st_dev && st1.st_ino == st2.st_ino)
|
|
|
|
return FPC_SAME;
|
|
|
|
return FPC_DIFF;
|
|
|
|
#else
|
|
|
|
char_u *exp1; /* expanded s1 */
|
|
|
|
char_u *full1; /* full path of s1 */
|
|
|
|
char_u *full2; /* full path of s2 */
|
|
|
|
int retval = FPC_DIFF;
|
|
|
|
int r1, r2;
|
|
|
|
|
|
|
|
/* allocate one buffer to store three paths (alloc()/free() is slow!) */
|
|
|
|
if ((exp1 = alloc(MAXPATHL * 3)) != NULL)
|
|
|
|
{
|
|
|
|
full1 = exp1 + MAXPATHL;
|
|
|
|
full2 = full1 + MAXPATHL;
|
|
|
|
|
2019-05-23 21:35:48 +02:00
|
|
|
if (expandenv)
|
|
|
|
expand_env(s1, exp1, MAXPATHL);
|
|
|
|
else
|
|
|
|
vim_strncpy(exp1, s1, MAXPATHL - 1);
|
2004-06-13 20:20:40 +00:00
|
|
|
r1 = vim_FullName(exp1, full1, MAXPATHL, FALSE);
|
|
|
|
r2 = vim_FullName(s2, full2, MAXPATHL, FALSE);
|
|
|
|
|
|
|
|
/* If vim_FullName() fails, the file probably doesn't exist. */
|
|
|
|
if (r1 != OK && r2 != OK)
|
|
|
|
{
|
|
|
|
if (checkname && fnamecmp(exp1, s2) == 0)
|
|
|
|
retval = FPC_SAMEX;
|
|
|
|
else
|
|
|
|
retval = FPC_NOTX;
|
|
|
|
}
|
|
|
|
else if (r1 != OK || r2 != OK)
|
|
|
|
retval = FPC_DIFFX;
|
|
|
|
else if (fnamecmp(full1, full2))
|
|
|
|
retval = FPC_DIFF;
|
|
|
|
else
|
|
|
|
retval = FPC_SAME;
|
|
|
|
vim_free(exp1);
|
|
|
|
}
|
|
|
|
return retval;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2004-06-24 15:53:16 +00:00
|
|
|
* Get the tail of a path: the file name.
|
2010-08-13 13:36:15 +02:00
|
|
|
* When the path ends in a path separator the tail is the NUL after it.
|
2004-06-24 15:53:16 +00:00
|
|
|
* Fail safe: never returns NULL.
|
2004-06-13 20:20:40 +00:00
|
|
|
*/
|
|
|
|
char_u *
|
2016-01-30 19:39:49 +01:00
|
|
|
gettail(char_u *fname)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
char_u *p1, *p2;
|
|
|
|
|
|
|
|
if (fname == NULL)
|
|
|
|
return (char_u *)"";
|
2013-11-04 02:54:12 +01:00
|
|
|
for (p1 = p2 = get_past_head(fname); *p2; ) /* find last part of path */
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
2013-11-04 02:54:12 +01:00
|
|
|
if (vim_ispathsep_nocolon(*p2))
|
2004-06-13 20:20:40 +00:00
|
|
|
p1 = p2 + 1;
|
2017-03-12 19:22:36 +01:00
|
|
|
MB_PTR_ADV(p2);
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
return p1;
|
|
|
|
}
|
|
|
|
|
2004-12-19 22:46:22 +00:00
|
|
|
/*
|
|
|
|
* Get pointer to tail of "fname", including path separators. Putting a NUL
|
|
|
|
* here leaves the directory name. Takes care of "c:/" and "//".
|
|
|
|
* Always returns a valid pointer.
|
|
|
|
*/
|
|
|
|
char_u *
|
2016-01-30 19:39:49 +01:00
|
|
|
gettail_sep(char_u *fname)
|
2004-12-19 22:46:22 +00:00
|
|
|
{
|
|
|
|
char_u *p;
|
|
|
|
char_u *t;
|
|
|
|
|
|
|
|
p = get_past_head(fname); /* don't remove the '/' from "c:/file" */
|
|
|
|
t = gettail(fname);
|
|
|
|
while (t > p && after_pathsep(fname, t))
|
|
|
|
--t;
|
|
|
|
#ifdef VMS
|
|
|
|
/* path separator is part of the path */
|
|
|
|
++t;
|
|
|
|
#endif
|
|
|
|
return t;
|
|
|
|
}
|
|
|
|
|
2004-06-13 20:20:40 +00:00
|
|
|
/*
|
|
|
|
* get the next path component (just after the next path separator).
|
|
|
|
*/
|
|
|
|
char_u *
|
2016-01-30 19:39:49 +01:00
|
|
|
getnextcomp(char_u *fname)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
while (*fname && !vim_ispathsep(*fname))
|
2017-03-12 19:22:36 +01:00
|
|
|
MB_PTR_ADV(fname);
|
2004-06-13 20:20:40 +00:00
|
|
|
if (*fname)
|
|
|
|
++fname;
|
|
|
|
return fname;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get a pointer to one character past the head of a path name.
|
|
|
|
* Unix: after "/"; DOS: after "c:\"; Amiga: after "disk:/"; Mac: no head.
|
|
|
|
* If there is no head, path is returned.
|
|
|
|
*/
|
|
|
|
char_u *
|
2016-01-30 19:39:49 +01:00
|
|
|
get_past_head(char_u *path)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
char_u *retval;
|
|
|
|
|
2016-02-23 14:53:34 +01:00
|
|
|
#if defined(MSWIN)
|
2004-06-13 20:20:40 +00:00
|
|
|
/* may skip "c:" */
|
|
|
|
if (isalpha(path[0]) && path[1] == ':')
|
|
|
|
retval = path + 2;
|
|
|
|
else
|
|
|
|
retval = path;
|
|
|
|
#else
|
|
|
|
# if defined(AMIGA)
|
|
|
|
/* may skip "label:" */
|
|
|
|
retval = vim_strchr(path, ':');
|
|
|
|
if (retval == NULL)
|
|
|
|
retval = path;
|
|
|
|
# else /* Unix */
|
|
|
|
retval = path;
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
while (vim_ispathsep(*retval))
|
|
|
|
++retval;
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2013-11-04 02:54:12 +01:00
|
|
|
* Return TRUE if 'c' is a path separator.
|
|
|
|
* Note that for MS-Windows this includes the colon.
|
2004-06-13 20:20:40 +00:00
|
|
|
*/
|
|
|
|
int
|
2016-01-30 19:39:49 +01:00
|
|
|
vim_ispathsep(int c)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
2011-05-10 16:41:25 +02:00
|
|
|
#ifdef UNIX
|
2004-06-13 20:20:40 +00:00
|
|
|
return (c == '/'); /* UNIX has ':' inside file names */
|
2011-05-10 16:41:25 +02:00
|
|
|
#else
|
|
|
|
# ifdef BACKSLASH_IN_FILENAME
|
2004-06-13 20:20:40 +00:00
|
|
|
return (c == ':' || c == '/' || c == '\\');
|
2011-05-10 16:41:25 +02:00
|
|
|
# else
|
|
|
|
# ifdef VMS
|
2004-06-13 20:20:40 +00:00
|
|
|
/* server"user passwd"::device:[full.path.name]fname.extension;version" */
|
|
|
|
return (c == ':' || c == '[' || c == ']' || c == '/'
|
|
|
|
|| c == '<' || c == '>' || c == '"' );
|
2011-05-10 16:41:25 +02:00
|
|
|
# else
|
2004-06-13 20:20:40 +00:00
|
|
|
return (c == ':' || c == '/');
|
2011-05-10 16:41:25 +02:00
|
|
|
# endif /* VMS */
|
2004-06-13 20:20:40 +00:00
|
|
|
# endif
|
2011-05-10 16:41:25 +02:00
|
|
|
#endif
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
|
2013-11-04 02:54:12 +01:00
|
|
|
/*
|
|
|
|
* Like vim_ispathsep(c), but exclude the colon for MS-Windows.
|
|
|
|
*/
|
|
|
|
int
|
2016-01-30 19:39:49 +01:00
|
|
|
vim_ispathsep_nocolon(int c)
|
2013-11-04 02:54:12 +01:00
|
|
|
{
|
|
|
|
return vim_ispathsep(c)
|
|
|
|
#ifdef BACKSLASH_IN_FILENAME
|
|
|
|
&& c != ':'
|
|
|
|
#endif
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
2006-04-05 20:41:53 +00:00
|
|
|
/*
|
|
|
|
* Shorten the path of a file from "~/foo/../.bar/fname" to "~/f/../.b/fname"
|
|
|
|
* It's done in-place.
|
|
|
|
*/
|
|
|
|
void
|
2016-01-30 19:39:49 +01:00
|
|
|
shorten_dir(char_u *str)
|
2006-04-05 20:41:53 +00:00
|
|
|
{
|
|
|
|
char_u *tail, *s, *d;
|
|
|
|
int skip = FALSE;
|
|
|
|
|
|
|
|
tail = gettail(str);
|
|
|
|
d = str;
|
|
|
|
for (s = str; ; ++s)
|
|
|
|
{
|
|
|
|
if (s >= tail) /* copy the whole tail */
|
|
|
|
{
|
|
|
|
*d++ = *s;
|
|
|
|
if (*s == NUL)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else if (vim_ispathsep(*s)) /* copy '/' and next char */
|
|
|
|
{
|
|
|
|
*d++ = *s;
|
|
|
|
skip = FALSE;
|
|
|
|
}
|
|
|
|
else if (!skip)
|
|
|
|
{
|
|
|
|
*d++ = *s; /* copy next char */
|
|
|
|
if (*s != '~' && *s != '.') /* and leading "~" and "." */
|
|
|
|
skip = TRUE;
|
|
|
|
if (has_mbyte)
|
|
|
|
{
|
|
|
|
int l = mb_ptr2len(s);
|
|
|
|
|
|
|
|
while (--l > 0)
|
2006-08-15 20:24:14 +00:00
|
|
|
*d++ = *++s;
|
2006-04-05 20:41:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-12-12 22:05:50 +00:00
|
|
|
/*
|
|
|
|
* Return TRUE if the directory of "fname" exists, FALSE otherwise.
|
|
|
|
* Also returns TRUE if there is no directory name.
|
|
|
|
* "fname" must be writable!.
|
|
|
|
*/
|
|
|
|
int
|
2016-01-30 19:39:49 +01:00
|
|
|
dir_of_file_exists(char_u *fname)
|
2005-12-12 22:05:50 +00:00
|
|
|
{
|
|
|
|
char_u *p;
|
|
|
|
int c;
|
|
|
|
int retval;
|
|
|
|
|
|
|
|
p = gettail_sep(fname);
|
|
|
|
if (p == fname)
|
|
|
|
return TRUE;
|
|
|
|
c = *p;
|
|
|
|
*p = NUL;
|
|
|
|
retval = mch_isdir(fname);
|
|
|
|
*p = c;
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2004-06-13 20:20:40 +00:00
|
|
|
/*
|
2013-03-19 16:49:16 +01:00
|
|
|
* Versions of fnamecmp() and fnamencmp() that handle '/' and '\' equally
|
|
|
|
* and deal with 'fileignorecase'.
|
2004-06-13 20:20:40 +00:00
|
|
|
*/
|
|
|
|
int
|
2016-01-30 19:39:49 +01:00
|
|
|
vim_fnamecmp(char_u *x, char_u *y)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
2013-03-19 16:49:16 +01:00
|
|
|
#ifdef BACKSLASH_IN_FILENAME
|
2004-06-13 20:20:40 +00:00
|
|
|
return vim_fnamencmp(x, y, MAXPATHL);
|
2013-03-19 16:49:16 +01:00
|
|
|
#else
|
|
|
|
if (p_fic)
|
|
|
|
return MB_STRICMP(x, y);
|
|
|
|
return STRCMP(x, y);
|
|
|
|
#endif
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2016-01-30 19:39:49 +01:00
|
|
|
vim_fnamencmp(char_u *x, char_u *y, size_t len)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
2013-03-19 16:49:16 +01:00
|
|
|
#ifdef BACKSLASH_IN_FILENAME
|
2013-03-19 18:31:49 +01:00
|
|
|
char_u *px = x;
|
|
|
|
char_u *py = y;
|
|
|
|
int cx = NUL;
|
|
|
|
int cy = NUL;
|
|
|
|
|
|
|
|
while (len > 0)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
2013-03-19 18:31:49 +01:00
|
|
|
cx = PTR2CHAR(px);
|
|
|
|
cy = PTR2CHAR(py);
|
|
|
|
if (cx == NUL || cy == NUL
|
|
|
|
|| ((p_fic ? MB_TOLOWER(cx) != MB_TOLOWER(cy) : cx != cy)
|
|
|
|
&& !(cx == '/' && cy == '\\')
|
|
|
|
&& !(cx == '\\' && cy == '/')))
|
2004-06-13 20:20:40 +00:00
|
|
|
break;
|
2013-03-19 18:31:49 +01:00
|
|
|
len -= MB_PTR2LEN(px);
|
|
|
|
px += MB_PTR2LEN(px);
|
|
|
|
py += MB_PTR2LEN(py);
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
if (len == 0)
|
|
|
|
return 0;
|
2013-03-19 18:31:49 +01:00
|
|
|
return (cx - cy);
|
2013-03-19 16:49:16 +01:00
|
|
|
#else
|
|
|
|
if (p_fic)
|
|
|
|
return MB_STRNICMP(x, y, len);
|
|
|
|
return STRNCMP(x, y, len);
|
2004-06-13 20:20:40 +00:00
|
|
|
#endif
|
2013-03-19 16:49:16 +01:00
|
|
|
}
|
2004-06-13 20:20:40 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Concatenate file names fname1 and fname2 into allocated memory.
|
2007-05-10 19:06:20 +00:00
|
|
|
* Only add a '/' or '\\' when 'sep' is TRUE and it is necessary.
|
2004-06-13 20:20:40 +00:00
|
|
|
*/
|
|
|
|
char_u *
|
2016-01-30 19:39:49 +01:00
|
|
|
concat_fnames(char_u *fname1, char_u *fname2, int sep)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
char_u *dest;
|
|
|
|
|
|
|
|
dest = alloc((unsigned)(STRLEN(fname1) + STRLEN(fname2) + 3));
|
|
|
|
if (dest != NULL)
|
|
|
|
{
|
|
|
|
STRCPY(dest, fname1);
|
|
|
|
if (sep)
|
|
|
|
add_pathsep(dest);
|
|
|
|
STRCAT(dest, fname2);
|
|
|
|
}
|
|
|
|
return dest;
|
|
|
|
}
|
|
|
|
|
2005-01-17 22:18:45 +00:00
|
|
|
/*
|
|
|
|
* Concatenate two strings and return the result in allocated memory.
|
|
|
|
* Returns NULL when out of memory.
|
|
|
|
*/
|
|
|
|
char_u *
|
2016-01-30 19:39:49 +01:00
|
|
|
concat_str(char_u *str1, char_u *str2)
|
2005-01-17 22:18:45 +00:00
|
|
|
{
|
|
|
|
char_u *dest;
|
|
|
|
size_t l = STRLEN(str1);
|
|
|
|
|
|
|
|
dest = alloc((unsigned)(l + STRLEN(str2) + 1L));
|
|
|
|
if (dest != NULL)
|
|
|
|
{
|
|
|
|
STRCPY(dest, str1);
|
|
|
|
STRCPY(dest + l, str2);
|
|
|
|
}
|
|
|
|
return dest;
|
|
|
|
}
|
|
|
|
|
2004-06-13 20:20:40 +00:00
|
|
|
/*
|
|
|
|
* Add a path separator to a file name, unless it already ends in a path
|
|
|
|
* separator.
|
|
|
|
*/
|
|
|
|
void
|
2016-01-30 19:39:49 +01:00
|
|
|
add_pathsep(char_u *p)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
2004-12-19 22:46:22 +00:00
|
|
|
if (*p != NUL && !after_pathsep(p, p + STRLEN(p)))
|
2004-06-13 20:20:40 +00:00
|
|
|
STRCAT(p, PATHSEPSTR);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* FullName_save - Make an allocated copy of a full file name.
|
|
|
|
* Returns NULL when out of memory.
|
|
|
|
*/
|
|
|
|
char_u *
|
2016-01-30 19:39:49 +01:00
|
|
|
FullName_save(
|
|
|
|
char_u *fname,
|
|
|
|
int force) /* force expansion, even when it already looks
|
2012-06-13 17:28:55 +02:00
|
|
|
* like a full path name */
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
char_u *buf;
|
|
|
|
char_u *new_fname = NULL;
|
|
|
|
|
|
|
|
if (fname == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
buf = alloc((unsigned)MAXPATHL);
|
|
|
|
if (buf != NULL)
|
|
|
|
{
|
|
|
|
if (vim_FullName(fname, buf, MAXPATHL, force) != FAIL)
|
|
|
|
new_fname = vim_strsave(buf);
|
|
|
|
else
|
|
|
|
new_fname = vim_strsave(fname);
|
|
|
|
vim_free(buf);
|
|
|
|
}
|
|
|
|
return new_fname;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2016-01-30 19:39:49 +01:00
|
|
|
prepare_to_exit(void)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
2004-12-19 22:46:22 +00:00
|
|
|
#if defined(SIGHUP) && defined(SIG_IGN)
|
|
|
|
/* Ignore SIGHUP, because a dropped connection causes a read error, which
|
|
|
|
* makes Vim exit and then handling SIGHUP causes various reentrance
|
|
|
|
* problems. */
|
2004-12-09 21:34:53 +00:00
|
|
|
signal(SIGHUP, SIG_IGN);
|
|
|
|
#endif
|
|
|
|
|
2004-06-13 20:20:40 +00:00
|
|
|
#ifdef FEAT_GUI
|
|
|
|
if (gui.in_use)
|
|
|
|
{
|
|
|
|
gui.dying = TRUE;
|
|
|
|
out_trash(); /* trash any pending output */
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
windgoto((int)Rows - 1, 0);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Switch terminal mode back now, so messages end up on the "normal"
|
|
|
|
* screen (if there are two screens).
|
|
|
|
*/
|
|
|
|
settmode(TMODE_COOK);
|
2016-10-12 14:20:24 +02:00
|
|
|
stoptermcap();
|
2004-06-13 20:20:40 +00:00
|
|
|
out_flush();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Preserve files and exit.
|
|
|
|
* When called IObuff must contain a message.
|
2013-09-05 21:41:39 +02:00
|
|
|
* NOTE: This may be called from deathtrap() in a signal handler, avoid unsafe
|
|
|
|
* functions, such as allocating memory.
|
2004-06-13 20:20:40 +00:00
|
|
|
*/
|
|
|
|
void
|
2016-01-30 19:39:49 +01:00
|
|
|
preserve_exit(void)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
buf_T *buf;
|
|
|
|
|
|
|
|
prepare_to_exit();
|
|
|
|
|
2006-01-12 23:22:24 +00:00
|
|
|
/* Setting this will prevent free() calls. That avoids calling free()
|
|
|
|
* recursively when free() was invoked with a bad pointer. */
|
|
|
|
really_exiting = TRUE;
|
|
|
|
|
2004-06-13 20:20:40 +00:00
|
|
|
out_str(IObuff);
|
|
|
|
screen_start(); /* don't know where cursor is now */
|
|
|
|
out_flush();
|
|
|
|
|
|
|
|
ml_close_notmod(); /* close all not-modified buffers */
|
|
|
|
|
2016-07-24 22:04:11 +02:00
|
|
|
FOR_ALL_BUFFERS(buf)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
if (buf->b_ml.ml_mfp != NULL && buf->b_ml.ml_mfp->mf_fname != NULL)
|
|
|
|
{
|
2013-09-05 21:41:39 +02:00
|
|
|
OUT_STR("Vim: preserving files...\n");
|
2004-06-13 20:20:40 +00:00
|
|
|
screen_start(); /* don't know where cursor is now */
|
|
|
|
out_flush();
|
|
|
|
ml_sync_all(FALSE, FALSE); /* preserve all swap files */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ml_close_all(FALSE); /* close all memfiles, without deleting */
|
|
|
|
|
2013-09-05 21:41:39 +02:00
|
|
|
OUT_STR("Vim: Finished.\n");
|
2004-06-13 20:20:40 +00:00
|
|
|
|
|
|
|
getout(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* return TRUE if "fname" exists.
|
|
|
|
*/
|
|
|
|
int
|
2016-01-30 19:39:49 +01:00
|
|
|
vim_fexists(char_u *fname)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
2016-07-01 17:17:39 +02:00
|
|
|
stat_T st;
|
2004-06-13 20:20:40 +00:00
|
|
|
|
|
|
|
if (mch_stat((char *)fname, &st))
|
|
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check for CTRL-C pressed, but only once in a while.
|
|
|
|
* Should be used instead of ui_breakcheck() for functions that check for
|
|
|
|
* each line in the file. Calling ui_breakcheck() each time takes too much
|
|
|
|
* time, because it can be a system call.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef BREAKCHECK_SKIP
|
|
|
|
# ifdef FEAT_GUI /* assume the GUI only runs on fast computers */
|
|
|
|
# define BREAKCHECK_SKIP 200
|
|
|
|
# else
|
|
|
|
# define BREAKCHECK_SKIP 32
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static int breakcheck_count = 0;
|
|
|
|
|
|
|
|
void
|
2016-01-30 19:39:49 +01:00
|
|
|
line_breakcheck(void)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
if (++breakcheck_count >= BREAKCHECK_SKIP)
|
|
|
|
{
|
|
|
|
breakcheck_count = 0;
|
|
|
|
ui_breakcheck();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Like line_breakcheck() but check 10 times less often.
|
|
|
|
*/
|
|
|
|
void
|
2016-01-30 19:39:49 +01:00
|
|
|
fast_breakcheck(void)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
if (++breakcheck_count >= BREAKCHECK_SKIP * 10)
|
|
|
|
{
|
|
|
|
breakcheck_count = 0;
|
|
|
|
ui_breakcheck();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-12-02 16:14:36 +00:00
|
|
|
/*
|
|
|
|
* Invoke expand_wildcards() for one pattern.
|
|
|
|
* Expand items like "%:h" before the expansion.
|
|
|
|
* Returns OK or FAIL.
|
|
|
|
*/
|
|
|
|
int
|
2016-01-30 19:39:49 +01:00
|
|
|
expand_wildcards_eval(
|
|
|
|
char_u **pat, /* pointer to input pattern */
|
|
|
|
int *num_file, /* resulting number of files */
|
|
|
|
char_u ***file, /* array of resulting files */
|
|
|
|
int flags) /* EW_DIR, etc. */
|
2009-12-02 16:14:36 +00:00
|
|
|
{
|
|
|
|
int ret = FAIL;
|
|
|
|
char_u *eval_pat = NULL;
|
|
|
|
char_u *exp_pat = *pat;
|
2019-01-13 23:38:42 +01:00
|
|
|
char *ignored_msg;
|
2009-12-02 16:14:36 +00:00
|
|
|
int usedlen;
|
|
|
|
|
|
|
|
if (*exp_pat == '%' || *exp_pat == '#' || *exp_pat == '<')
|
|
|
|
{
|
|
|
|
++emsg_off;
|
|
|
|
eval_pat = eval_vars(exp_pat, exp_pat, &usedlen,
|
|
|
|
NULL, &ignored_msg, NULL);
|
|
|
|
--emsg_off;
|
|
|
|
if (eval_pat != NULL)
|
|
|
|
exp_pat = concat_str(eval_pat, exp_pat + usedlen);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (exp_pat != NULL)
|
|
|
|
ret = expand_wildcards(1, &exp_pat, num_file, file, flags);
|
|
|
|
|
|
|
|
if (eval_pat != NULL)
|
|
|
|
{
|
|
|
|
vim_free(exp_pat);
|
|
|
|
vim_free(eval_pat);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2004-06-13 20:20:40 +00:00
|
|
|
/*
|
|
|
|
* Expand wildcards. Calls gen_expand_wildcards() and removes files matching
|
|
|
|
* 'wildignore'.
|
2015-09-15 19:05:59 +02:00
|
|
|
* Returns OK or FAIL. When FAIL then "num_files" won't be set.
|
2004-06-13 20:20:40 +00:00
|
|
|
*/
|
|
|
|
int
|
2016-01-30 19:39:49 +01:00
|
|
|
expand_wildcards(
|
|
|
|
int num_pat, /* number of input patterns */
|
|
|
|
char_u **pat, /* array of input patterns */
|
|
|
|
int *num_files, /* resulting number of files */
|
|
|
|
char_u ***files, /* array of resulting files */
|
|
|
|
int flags) /* EW_DIR, etc. */
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
int retval;
|
|
|
|
int i, j;
|
|
|
|
char_u *p;
|
|
|
|
int non_suf_match; /* number without matching suffix */
|
|
|
|
|
2015-09-15 19:05:59 +02:00
|
|
|
retval = gen_expand_wildcards(num_pat, pat, num_files, files, flags);
|
2004-06-13 20:20:40 +00:00
|
|
|
|
|
|
|
/* When keeping all matches, return here */
|
2010-07-19 23:11:27 +02:00
|
|
|
if ((flags & EW_KEEPALL) || retval == FAIL)
|
2004-06-13 20:20:40 +00:00
|
|
|
return retval;
|
|
|
|
|
|
|
|
#ifdef FEAT_WILDIGN
|
|
|
|
/*
|
|
|
|
* Remove names that match 'wildignore'.
|
|
|
|
*/
|
|
|
|
if (*p_wig)
|
|
|
|
{
|
|
|
|
char_u *ffname;
|
|
|
|
|
2015-09-15 19:05:59 +02:00
|
|
|
/* check all files in (*files)[] */
|
|
|
|
for (i = 0; i < *num_files; ++i)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
2015-09-15 19:05:59 +02:00
|
|
|
ffname = FullName_save((*files)[i], FALSE);
|
2004-06-13 20:20:40 +00:00
|
|
|
if (ffname == NULL) /* out of memory */
|
|
|
|
break;
|
|
|
|
# ifdef VMS
|
|
|
|
vms_remove_version(ffname);
|
|
|
|
# endif
|
2015-09-15 19:05:59 +02:00
|
|
|
if (match_file_list(p_wig, (*files)[i], ffname))
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
2017-02-23 17:07:14 +01:00
|
|
|
/* remove this matching file from the list */
|
2015-09-15 19:05:59 +02:00
|
|
|
vim_free((*files)[i]);
|
|
|
|
for (j = i; j + 1 < *num_files; ++j)
|
|
|
|
(*files)[j] = (*files)[j + 1];
|
|
|
|
--*num_files;
|
2004-06-13 20:20:40 +00:00
|
|
|
--i;
|
|
|
|
}
|
|
|
|
vim_free(ffname);
|
|
|
|
}
|
2015-09-15 19:05:59 +02:00
|
|
|
|
|
|
|
/* If the number of matches is now zero, we fail. */
|
|
|
|
if (*num_files == 0)
|
|
|
|
{
|
2018-02-10 18:45:26 +01:00
|
|
|
VIM_CLEAR(*files);
|
2015-09-15 19:05:59 +02:00
|
|
|
return FAIL;
|
|
|
|
}
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Move the names where 'suffixes' match to the end.
|
|
|
|
*/
|
2015-09-15 19:05:59 +02:00
|
|
|
if (*num_files > 1)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
non_suf_match = 0;
|
2015-09-15 19:05:59 +02:00
|
|
|
for (i = 0; i < *num_files; ++i)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
2015-09-15 19:05:59 +02:00
|
|
|
if (!match_suffix((*files)[i]))
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Move the name without matching suffix to the front
|
|
|
|
* of the list.
|
|
|
|
*/
|
2015-09-15 19:05:59 +02:00
|
|
|
p = (*files)[i];
|
2004-06-13 20:20:40 +00:00
|
|
|
for (j = i; j > non_suf_match; --j)
|
2015-09-15 19:05:59 +02:00
|
|
|
(*files)[j] = (*files)[j - 1];
|
|
|
|
(*files)[non_suf_match++] = p;
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Return TRUE if "fname" matches with an entry in 'suffixes'.
|
|
|
|
*/
|
|
|
|
int
|
2016-01-30 19:39:49 +01:00
|
|
|
match_suffix(char_u *fname)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
int fnamelen, setsuflen;
|
|
|
|
char_u *setsuf;
|
|
|
|
#define MAXSUFLEN 30 /* maximum length of a file suffix */
|
|
|
|
char_u suf_buf[MAXSUFLEN];
|
|
|
|
|
|
|
|
fnamelen = (int)STRLEN(fname);
|
|
|
|
setsuflen = 0;
|
|
|
|
for (setsuf = p_su; *setsuf; )
|
|
|
|
{
|
|
|
|
setsuflen = copy_option_part(&setsuf, suf_buf, MAXSUFLEN, ".,");
|
2009-07-14 19:40:21 +00:00
|
|
|
if (setsuflen == 0)
|
|
|
|
{
|
|
|
|
char_u *tail = gettail(fname);
|
|
|
|
|
|
|
|
/* empty entry: match name without a '.' */
|
|
|
|
if (vim_strchr(tail, '.') == NULL)
|
|
|
|
{
|
|
|
|
setsuflen = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (fnamelen >= setsuflen
|
|
|
|
&& fnamencmp(suf_buf, fname + fnamelen - setsuflen,
|
|
|
|
(size_t)setsuflen) == 0)
|
|
|
|
break;
|
|
|
|
setsuflen = 0;
|
|
|
|
}
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
return (setsuflen != 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
#if !defined(NO_EXPANDPATH) || defined(PROTO)
|
|
|
|
|
|
|
|
# ifdef VIM_BACKTICK
|
2016-01-29 22:36:45 +01:00
|
|
|
static int vim_backtick(char_u *p);
|
|
|
|
static int expand_backtick(garray_T *gap, char_u *pat, int flags);
|
2004-06-13 20:20:40 +00:00
|
|
|
# endif
|
|
|
|
|
2019-02-17 17:44:42 +01:00
|
|
|
# if defined(MSWIN)
|
2004-06-13 20:20:40 +00:00
|
|
|
/*
|
|
|
|
* File name expansion code for MS-DOS, Win16 and Win32. It's here because
|
|
|
|
* it's shared between these systems.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* comparison function for qsort in dos_expandpath()
|
|
|
|
*/
|
2019-05-09 15:12:55 +02:00
|
|
|
static int
|
2004-06-13 20:20:40 +00:00
|
|
|
pstrcmp(const void *a, const void *b)
|
|
|
|
{
|
2004-12-19 22:46:22 +00:00
|
|
|
return (pathcmp(*(char **)a, *(char **)b, -1));
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2005-07-25 20:46:57 +00:00
|
|
|
* Recursively expand one path component into all matching files and/or
|
|
|
|
* directories. Adds matches to "gap". Handles "*", "?", "[a-z]", "**", etc.
|
2004-06-13 20:20:40 +00:00
|
|
|
* Return the number of matches found.
|
|
|
|
* "path" has backslashes before chars that are not to be expanded, starting
|
|
|
|
* at "path[wildoff]".
|
2005-07-25 20:46:57 +00:00
|
|
|
* Return the number of matches found.
|
|
|
|
* NOTE: much of this is identical to unix_expandpath(), keep in sync!
|
2004-06-13 20:20:40 +00:00
|
|
|
*/
|
|
|
|
static int
|
|
|
|
dos_expandpath(
|
|
|
|
garray_T *gap,
|
|
|
|
char_u *path,
|
|
|
|
int wildoff,
|
2005-07-25 20:46:57 +00:00
|
|
|
int flags, /* EW_* flags */
|
2007-05-10 19:06:20 +00:00
|
|
|
int didstar) /* expanded "**" once already */
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
2005-07-25 20:46:57 +00:00
|
|
|
char_u *buf;
|
|
|
|
char_u *path_end;
|
|
|
|
char_u *p, *s, *e;
|
|
|
|
int start_len = gap->ga_len;
|
|
|
|
char_u *pat;
|
|
|
|
regmatch_T regmatch;
|
|
|
|
int starts_with_dot;
|
|
|
|
int matches;
|
|
|
|
int len;
|
|
|
|
int starstar = FALSE;
|
2019-04-02 22:15:55 +02:00
|
|
|
static int stardepth = 0; // depth for "**" expansion
|
|
|
|
HANDLE hFind = INVALID_HANDLE_VALUE;
|
2004-06-13 20:20:40 +00:00
|
|
|
WIN32_FIND_DATAW wfb;
|
2019-04-02 22:15:55 +02:00
|
|
|
WCHAR *wn = NULL; // UCS-2 name, NULL when not used.
|
2004-06-13 20:20:40 +00:00
|
|
|
char_u *matchname;
|
2005-07-25 20:46:57 +00:00
|
|
|
int ok;
|
|
|
|
|
|
|
|
/* Expanding "**" may take a long time, check for CTRL-C. */
|
|
|
|
if (stardepth > 0)
|
|
|
|
{
|
|
|
|
ui_breakcheck();
|
|
|
|
if (got_int)
|
|
|
|
return 0;
|
|
|
|
}
|
2004-06-13 20:20:40 +00:00
|
|
|
|
2019-01-24 15:54:21 +01:00
|
|
|
// Make room for file name. When doing encoding conversion the actual
|
|
|
|
// length may be quite a bit longer, thus use the maximum possible length.
|
2015-10-31 15:32:52 +01:00
|
|
|
buf = alloc((int)MAXPATHL);
|
2004-06-13 20:20:40 +00:00
|
|
|
if (buf == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Find the first part in the path name that contains a wildcard or a ~1.
|
|
|
|
* Copy it into buf, including the preceding characters.
|
|
|
|
*/
|
|
|
|
p = buf;
|
|
|
|
s = buf;
|
|
|
|
e = NULL;
|
|
|
|
path_end = path;
|
|
|
|
while (*path_end != NUL)
|
|
|
|
{
|
|
|
|
/* May ignore a wildcard that has a backslash before it; it will
|
|
|
|
* be removed by rem_backslash() or file_pat_to_reg_pat() below. */
|
|
|
|
if (path_end >= path + wildoff && rem_backslash(path_end))
|
|
|
|
*p++ = *path_end++;
|
|
|
|
else if (*path_end == '\\' || *path_end == ':' || *path_end == '/')
|
|
|
|
{
|
|
|
|
if (e != NULL)
|
|
|
|
break;
|
|
|
|
s = p + 1;
|
|
|
|
}
|
|
|
|
else if (path_end >= path + wildoff
|
|
|
|
&& vim_strchr((char_u *)"*?[~", *path_end) != NULL)
|
|
|
|
e = p;
|
|
|
|
if (has_mbyte)
|
|
|
|
{
|
2005-08-10 21:07:57 +00:00
|
|
|
len = (*mb_ptr2len)(path_end);
|
2004-06-13 20:20:40 +00:00
|
|
|
STRNCPY(p, path_end, len);
|
|
|
|
p += len;
|
|
|
|
path_end += len;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
*p++ = *path_end++;
|
|
|
|
}
|
|
|
|
e = p;
|
|
|
|
*e = NUL;
|
|
|
|
|
|
|
|
/* now we have one wildcard component between s and e */
|
|
|
|
/* Remove backslashes between "wildoff" and the start of the wildcard
|
|
|
|
* component. */
|
|
|
|
for (p = buf + wildoff; p < s; ++p)
|
|
|
|
if (rem_backslash(p))
|
|
|
|
{
|
2008-06-24 22:58:06 +00:00
|
|
|
STRMOVE(p, p + 1);
|
2004-06-13 20:20:40 +00:00
|
|
|
--e;
|
|
|
|
--s;
|
|
|
|
}
|
|
|
|
|
2005-07-25 20:46:57 +00:00
|
|
|
/* Check for "**" between "s" and "e". */
|
|
|
|
for (p = s; p < e; ++p)
|
|
|
|
if (p[0] == '*' && p[1] == '*')
|
|
|
|
starstar = TRUE;
|
|
|
|
|
2016-01-17 17:04:05 +01:00
|
|
|
starts_with_dot = *s == '.';
|
2004-06-13 20:20:40 +00:00
|
|
|
pat = file_pat_to_reg_pat(s, e, NULL, FALSE);
|
|
|
|
if (pat == NULL)
|
|
|
|
{
|
|
|
|
vim_free(buf);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* compile the regexp into a program */
|
2012-01-10 18:37:58 +01:00
|
|
|
if (flags & (EW_NOERROR | EW_NOTWILD))
|
2011-07-20 15:04:58 +02:00
|
|
|
++emsg_silent;
|
2004-06-13 20:20:40 +00:00
|
|
|
regmatch.rm_ic = TRUE; /* Always ignore case */
|
|
|
|
regmatch.regprog = vim_regcomp(pat, RE_MAGIC);
|
2012-01-10 18:37:58 +01:00
|
|
|
if (flags & (EW_NOERROR | EW_NOTWILD))
|
2011-07-20 15:04:58 +02:00
|
|
|
--emsg_silent;
|
2004-06-13 20:20:40 +00:00
|
|
|
vim_free(pat);
|
|
|
|
|
2012-01-10 18:37:58 +01:00
|
|
|
if (regmatch.regprog == NULL && (flags & EW_NOTWILD) == 0)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
vim_free(buf);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* remember the pattern or file name being looked for */
|
|
|
|
matchname = vim_strsave(s);
|
|
|
|
|
2005-07-25 20:46:57 +00:00
|
|
|
/* If "**" is by itself, this is the first time we encounter it and more
|
|
|
|
* is following then find matches without any directory. */
|
|
|
|
if (!didstar && stardepth < 100 && starstar && e - s == 2
|
|
|
|
&& *path_end == '/')
|
|
|
|
{
|
|
|
|
STRCPY(s, path_end + 1);
|
|
|
|
++stardepth;
|
|
|
|
(void)dos_expandpath(gap, buf, (int)(s - buf), flags, TRUE);
|
|
|
|
--stardepth;
|
|
|
|
}
|
|
|
|
|
2004-06-13 20:20:40 +00:00
|
|
|
/* Scan all files in the directory with "dir/ *.*" */
|
|
|
|
STRCPY(s, "*.*");
|
2019-04-02 22:15:55 +02:00
|
|
|
wn = enc_to_utf16(buf, NULL);
|
|
|
|
if (wn != NULL)
|
|
|
|
hFind = FindFirstFileW(wn, &wfb);
|
2004-06-13 20:20:40 +00:00
|
|
|
ok = (hFind != INVALID_HANDLE_VALUE);
|
|
|
|
|
|
|
|
while (ok)
|
|
|
|
{
|
2019-04-02 22:15:55 +02:00
|
|
|
p = utf16_to_enc(wfb.cFileName, NULL); // p is allocated here
|
2019-04-05 22:50:40 +02:00
|
|
|
if (p == NULL)
|
|
|
|
break; // out of memory
|
|
|
|
|
2019-04-02 22:15:55 +02:00
|
|
|
// Ignore entries starting with a dot, unless when asked for. Accept
|
|
|
|
// all entries found with "matchname".
|
2016-01-17 17:04:05 +01:00
|
|
|
if ((p[0] != '.' || starts_with_dot
|
|
|
|
|| ((flags & EW_DODOT)
|
|
|
|
&& p[1] != NUL && (p[1] != '.' || p[2] != NUL)))
|
2004-06-13 20:20:40 +00:00
|
|
|
&& (matchname == NULL
|
2012-01-10 18:37:58 +01:00
|
|
|
|| (regmatch.regprog != NULL
|
|
|
|
&& vim_regexec(®match, p, (colnr_T)0))
|
2011-07-27 17:31:47 +02:00
|
|
|
|| ((flags & EW_NOTWILD)
|
|
|
|
&& fnamencmp(path + (s - buf), p, e - s) == 0)))
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
STRCPY(s, p);
|
|
|
|
len = (int)STRLEN(buf);
|
2005-07-25 20:46:57 +00:00
|
|
|
|
|
|
|
if (starstar && stardepth < 100)
|
|
|
|
{
|
|
|
|
/* For "**" in the pattern first go deeper in the tree to
|
|
|
|
* find matches. */
|
|
|
|
STRCPY(buf + len, "/**");
|
|
|
|
STRCPY(buf + len + 3, path_end);
|
|
|
|
++stardepth;
|
|
|
|
(void)dos_expandpath(gap, buf, len + 1, flags, TRUE);
|
|
|
|
--stardepth;
|
|
|
|
}
|
|
|
|
|
2004-06-13 20:20:40 +00:00
|
|
|
STRCPY(buf + len, path_end);
|
|
|
|
if (mch_has_exp_wildcard(path_end))
|
|
|
|
{
|
|
|
|
/* need to expand another component of the path */
|
|
|
|
/* remove backslashes for the remaining components only */
|
2005-07-25 20:46:57 +00:00
|
|
|
(void)dos_expandpath(gap, buf, len + 1, flags, FALSE);
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* no more wildcards, check if there is a match */
|
|
|
|
/* remove backslashes for the remaining components only */
|
|
|
|
if (*path_end != 0)
|
|
|
|
backslash_halve(buf + len + 1);
|
|
|
|
if (mch_getperm(buf) >= 0) /* add existing file */
|
|
|
|
addfile(gap, buf, flags);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-02 22:15:55 +02:00
|
|
|
vim_free(p);
|
|
|
|
ok = FindNextFileW(hFind, &wfb);
|
2004-06-13 20:20:40 +00:00
|
|
|
|
|
|
|
/* If no more matches and no match was used, try expanding the name
|
|
|
|
* itself. Finds the long name of a short filename. */
|
|
|
|
if (!ok && matchname != NULL && gap->ga_len == start_len)
|
|
|
|
{
|
|
|
|
STRCPY(s, matchname);
|
|
|
|
FindClose(hFind);
|
2019-04-02 22:15:55 +02:00
|
|
|
vim_free(wn);
|
|
|
|
wn = enc_to_utf16(buf, NULL);
|
2004-06-13 20:20:40 +00:00
|
|
|
if (wn != NULL)
|
2019-04-02 22:15:55 +02:00
|
|
|
hFind = FindFirstFileW(wn, &wfb);
|
|
|
|
else
|
|
|
|
hFind = INVALID_HANDLE_VALUE;
|
2004-06-13 20:20:40 +00:00
|
|
|
ok = (hFind != INVALID_HANDLE_VALUE);
|
2018-02-10 18:45:26 +01:00
|
|
|
VIM_CLEAR(matchname);
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
FindClose(hFind);
|
|
|
|
vim_free(wn);
|
|
|
|
vim_free(buf);
|
2013-06-08 18:19:48 +02:00
|
|
|
vim_regfree(regmatch.regprog);
|
2004-06-13 20:20:40 +00:00
|
|
|
vim_free(matchname);
|
|
|
|
|
|
|
|
matches = gap->ga_len - start_len;
|
|
|
|
if (matches > 0)
|
|
|
|
qsort(((char_u **)gap->ga_data) + start_len, (size_t)matches,
|
|
|
|
sizeof(char_u *), pstrcmp);
|
|
|
|
return matches;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
mch_expandpath(
|
|
|
|
garray_T *gap,
|
|
|
|
char_u *path,
|
|
|
|
int flags) /* EW_* flags */
|
|
|
|
{
|
2005-07-25 20:46:57 +00:00
|
|
|
return dos_expandpath(gap, path, 0, flags, FALSE);
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
2019-02-17 17:44:42 +01:00
|
|
|
# endif // MSWIN
|
2004-06-13 20:20:40 +00:00
|
|
|
|
2005-07-25 20:46:57 +00:00
|
|
|
#if (defined(UNIX) && !defined(VMS)) || defined(USE_UNIXFILENAME) \
|
|
|
|
|| defined(PROTO)
|
|
|
|
/*
|
|
|
|
* Unix style wildcard expansion code.
|
|
|
|
* It's here because it's used both for Unix and Mac.
|
|
|
|
*/
|
|
|
|
static int
|
2016-01-30 19:39:49 +01:00
|
|
|
pstrcmp(const void *a, const void *b)
|
2005-07-25 20:46:57 +00:00
|
|
|
{
|
|
|
|
return (pathcmp(*(char **)a, *(char **)b, -1));
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Recursively expand one path component into all matching files and/or
|
|
|
|
* directories. Adds matches to "gap". Handles "*", "?", "[a-z]", "**", etc.
|
|
|
|
* "path" has backslashes before chars that are not to be expanded, starting
|
|
|
|
* at "path + wildoff".
|
|
|
|
* Return the number of matches found.
|
|
|
|
* NOTE: much of this is identical to dos_expandpath(), keep in sync!
|
|
|
|
*/
|
|
|
|
int
|
2016-01-30 19:39:49 +01:00
|
|
|
unix_expandpath(
|
|
|
|
garray_T *gap,
|
|
|
|
char_u *path,
|
|
|
|
int wildoff,
|
|
|
|
int flags, /* EW_* flags */
|
|
|
|
int didstar) /* expanded "**" once already */
|
2005-07-25 20:46:57 +00:00
|
|
|
{
|
|
|
|
char_u *buf;
|
|
|
|
char_u *path_end;
|
|
|
|
char_u *p, *s, *e;
|
|
|
|
int start_len = gap->ga_len;
|
|
|
|
char_u *pat;
|
|
|
|
regmatch_T regmatch;
|
|
|
|
int starts_with_dot;
|
|
|
|
int matches;
|
|
|
|
int len;
|
|
|
|
int starstar = FALSE;
|
|
|
|
static int stardepth = 0; /* depth for "**" expansion */
|
|
|
|
|
|
|
|
DIR *dirp;
|
|
|
|
struct dirent *dp;
|
|
|
|
|
|
|
|
/* Expanding "**" may take a long time, check for CTRL-C. */
|
|
|
|
if (stardepth > 0)
|
|
|
|
{
|
|
|
|
ui_breakcheck();
|
|
|
|
if (got_int)
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* make room for file name */
|
|
|
|
buf = alloc((int)STRLEN(path) + BASENAMELEN + 5);
|
|
|
|
if (buf == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Find the first part in the path name that contains a wildcard.
|
2012-04-30 21:09:43 +02:00
|
|
|
* When EW_ICASE is set every letter is considered to be a wildcard.
|
2005-07-25 20:46:57 +00:00
|
|
|
* Copy it into "buf", including the preceding characters.
|
|
|
|
*/
|
|
|
|
p = buf;
|
|
|
|
s = buf;
|
|
|
|
e = NULL;
|
|
|
|
path_end = path;
|
|
|
|
while (*path_end != NUL)
|
|
|
|
{
|
|
|
|
/* May ignore a wildcard that has a backslash before it; it will
|
|
|
|
* be removed by rem_backslash() or file_pat_to_reg_pat() below. */
|
|
|
|
if (path_end >= path + wildoff && rem_backslash(path_end))
|
|
|
|
*p++ = *path_end++;
|
|
|
|
else if (*path_end == '/')
|
|
|
|
{
|
|
|
|
if (e != NULL)
|
|
|
|
break;
|
|
|
|
s = p + 1;
|
|
|
|
}
|
|
|
|
else if (path_end >= path + wildoff
|
2012-04-30 21:09:43 +02:00
|
|
|
&& (vim_strchr((char_u *)"*?[{~$", *path_end) != NULL
|
2013-03-19 16:49:16 +01:00
|
|
|
|| (!p_fic && (flags & EW_ICASE)
|
|
|
|
&& isalpha(PTR2CHAR(path_end)))))
|
2005-07-25 20:46:57 +00:00
|
|
|
e = p;
|
|
|
|
if (has_mbyte)
|
|
|
|
{
|
2005-08-10 21:07:57 +00:00
|
|
|
len = (*mb_ptr2len)(path_end);
|
2005-07-25 20:46:57 +00:00
|
|
|
STRNCPY(p, path_end, len);
|
|
|
|
p += len;
|
|
|
|
path_end += len;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
*p++ = *path_end++;
|
|
|
|
}
|
|
|
|
e = p;
|
|
|
|
*e = NUL;
|
|
|
|
|
2011-07-27 17:31:47 +02:00
|
|
|
/* Now we have one wildcard component between "s" and "e". */
|
2005-07-25 20:46:57 +00:00
|
|
|
/* Remove backslashes between "wildoff" and the start of the wildcard
|
|
|
|
* component. */
|
|
|
|
for (p = buf + wildoff; p < s; ++p)
|
|
|
|
if (rem_backslash(p))
|
|
|
|
{
|
2008-06-24 22:58:06 +00:00
|
|
|
STRMOVE(p, p + 1);
|
2005-07-25 20:46:57 +00:00
|
|
|
--e;
|
|
|
|
--s;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check for "**" between "s" and "e". */
|
|
|
|
for (p = s; p < e; ++p)
|
|
|
|
if (p[0] == '*' && p[1] == '*')
|
|
|
|
starstar = TRUE;
|
|
|
|
|
|
|
|
/* convert the file pattern to a regexp pattern */
|
2016-01-17 17:04:05 +01:00
|
|
|
starts_with_dot = *s == '.';
|
2005-07-25 20:46:57 +00:00
|
|
|
pat = file_pat_to_reg_pat(s, e, NULL, FALSE);
|
|
|
|
if (pat == NULL)
|
|
|
|
{
|
|
|
|
vim_free(buf);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* compile the regexp into a program */
|
2010-12-02 16:01:29 +01:00
|
|
|
if (flags & EW_ICASE)
|
|
|
|
regmatch.rm_ic = TRUE; /* 'wildignorecase' set */
|
|
|
|
else
|
2013-03-19 16:49:16 +01:00
|
|
|
regmatch.rm_ic = p_fic; /* ignore case when 'fileignorecase' is set */
|
2012-01-10 18:37:58 +01:00
|
|
|
if (flags & (EW_NOERROR | EW_NOTWILD))
|
|
|
|
++emsg_silent;
|
2005-07-25 20:46:57 +00:00
|
|
|
regmatch.regprog = vim_regcomp(pat, RE_MAGIC);
|
2012-01-10 18:37:58 +01:00
|
|
|
if (flags & (EW_NOERROR | EW_NOTWILD))
|
|
|
|
--emsg_silent;
|
2005-07-25 20:46:57 +00:00
|
|
|
vim_free(pat);
|
|
|
|
|
2012-01-10 18:37:58 +01:00
|
|
|
if (regmatch.regprog == NULL && (flags & EW_NOTWILD) == 0)
|
2005-07-25 20:46:57 +00:00
|
|
|
{
|
|
|
|
vim_free(buf);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If "**" is by itself, this is the first time we encounter it and more
|
|
|
|
* is following then find matches without any directory. */
|
|
|
|
if (!didstar && stardepth < 100 && starstar && e - s == 2
|
|
|
|
&& *path_end == '/')
|
|
|
|
{
|
|
|
|
STRCPY(s, path_end + 1);
|
|
|
|
++stardepth;
|
|
|
|
(void)unix_expandpath(gap, buf, (int)(s - buf), flags, TRUE);
|
|
|
|
--stardepth;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* open the directory for scanning */
|
|
|
|
*s = NUL;
|
|
|
|
dirp = opendir(*buf == NUL ? "." : (char *)buf);
|
|
|
|
|
|
|
|
/* Find all matching entries */
|
|
|
|
if (dirp != NULL)
|
|
|
|
{
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
dp = readdir(dirp);
|
|
|
|
if (dp == NULL)
|
|
|
|
break;
|
2016-01-17 17:04:05 +01:00
|
|
|
if ((dp->d_name[0] != '.' || starts_with_dot
|
|
|
|
|| ((flags & EW_DODOT)
|
|
|
|
&& dp->d_name[1] != NUL
|
|
|
|
&& (dp->d_name[1] != '.' || dp->d_name[2] != NUL)))
|
2012-01-10 18:37:58 +01:00
|
|
|
&& ((regmatch.regprog != NULL && vim_regexec(®match,
|
|
|
|
(char_u *)dp->d_name, (colnr_T)0))
|
2011-07-27 17:31:47 +02:00
|
|
|
|| ((flags & EW_NOTWILD)
|
|
|
|
&& fnamencmp(path + (s - buf), dp->d_name, e - s) == 0)))
|
2005-07-25 20:46:57 +00:00
|
|
|
{
|
|
|
|
STRCPY(s, dp->d_name);
|
|
|
|
len = STRLEN(buf);
|
|
|
|
|
|
|
|
if (starstar && stardepth < 100)
|
|
|
|
{
|
|
|
|
/* For "**" in the pattern first go deeper in the tree to
|
|
|
|
* find matches. */
|
|
|
|
STRCPY(buf + len, "/**");
|
|
|
|
STRCPY(buf + len + 3, path_end);
|
|
|
|
++stardepth;
|
|
|
|
(void)unix_expandpath(gap, buf, len + 1, flags, TRUE);
|
|
|
|
--stardepth;
|
|
|
|
}
|
|
|
|
|
|
|
|
STRCPY(buf + len, path_end);
|
|
|
|
if (mch_has_exp_wildcard(path_end)) /* handle more wildcards */
|
|
|
|
{
|
|
|
|
/* need to expand another component of the path */
|
|
|
|
/* remove backslashes for the remaining components only */
|
|
|
|
(void)unix_expandpath(gap, buf, len + 1, flags, FALSE);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-07-01 17:17:39 +02:00
|
|
|
stat_T sb;
|
2015-03-05 21:21:19 +01:00
|
|
|
|
2005-07-25 20:46:57 +00:00
|
|
|
/* no more wildcards, check if there is a match */
|
|
|
|
/* remove backslashes for the remaining components only */
|
|
|
|
if (*path_end != NUL)
|
|
|
|
backslash_halve(buf + len + 1);
|
2015-03-05 21:21:19 +01:00
|
|
|
/* add existing file or symbolic link */
|
2015-03-06 22:00:11 +01:00
|
|
|
if ((flags & EW_ALLLINKS) ? mch_lstat((char *)buf, &sb) >= 0
|
2015-03-05 21:21:19 +01:00
|
|
|
: mch_getperm(buf) >= 0)
|
2005-07-25 20:46:57 +00:00
|
|
|
{
|
2006-03-15 23:04:43 +00:00
|
|
|
#ifdef MACOS_CONVERT
|
2005-07-25 20:46:57 +00:00
|
|
|
size_t precomp_len = STRLEN(buf)+1;
|
|
|
|
char_u *precomp_buf =
|
|
|
|
mac_precompose_path(buf, precomp_len, &precomp_len);
|
2006-03-15 23:04:43 +00:00
|
|
|
|
2005-07-25 20:46:57 +00:00
|
|
|
if (precomp_buf)
|
|
|
|
{
|
|
|
|
mch_memmove(buf, precomp_buf, precomp_len);
|
|
|
|
vim_free(precomp_buf);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
addfile(gap, buf, flags);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
closedir(dirp);
|
|
|
|
}
|
|
|
|
|
|
|
|
vim_free(buf);
|
2013-06-08 18:19:48 +02:00
|
|
|
vim_regfree(regmatch.regprog);
|
2005-07-25 20:46:57 +00:00
|
|
|
|
|
|
|
matches = gap->ga_len - start_len;
|
|
|
|
if (matches > 0)
|
|
|
|
qsort(((char_u **)gap->ga_data) + start_len, matches,
|
|
|
|
sizeof(char_u *), pstrcmp);
|
|
|
|
return matches;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-07-29 20:59:59 +02:00
|
|
|
#if defined(FEAT_SEARCHPATH) || defined(FEAT_CMDL_COMPL) || defined(PROTO)
|
|
|
|
/*
|
2010-08-13 21:16:49 +02:00
|
|
|
* Sort "gap" and remove duplicate entries. "gap" is expected to contain a
|
|
|
|
* list of file names in allocated memory.
|
2010-07-29 20:59:59 +02:00
|
|
|
*/
|
|
|
|
void
|
2016-01-30 19:39:49 +01:00
|
|
|
remove_duplicates(garray_T *gap)
|
2010-07-29 20:59:59 +02:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int j;
|
|
|
|
char_u **fnames = (char_u **)gap->ga_data;
|
|
|
|
|
2010-08-13 21:16:49 +02:00
|
|
|
sort_strings(fnames, gap->ga_len);
|
2010-07-29 20:59:59 +02:00
|
|
|
for (i = gap->ga_len - 1; i > 0; --i)
|
|
|
|
if (fnamecmp(fnames[i - 1], fnames[i]) == 0)
|
|
|
|
{
|
|
|
|
vim_free(fnames[i]);
|
|
|
|
for (j = i + 1; j < gap->ga_len; ++j)
|
|
|
|
fnames[j - 1] = fnames[j];
|
|
|
|
--gap->ga_len;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-07-03 16:53:03 +02:00
|
|
|
/*
|
|
|
|
* Return TRUE if "p" contains what looks like an environment variable.
|
|
|
|
* Allowing for escaping.
|
|
|
|
*/
|
|
|
|
static int
|
2016-01-30 19:39:49 +01:00
|
|
|
has_env_var(char_u *p)
|
2013-07-03 16:53:03 +02:00
|
|
|
{
|
2017-03-12 19:22:36 +01:00
|
|
|
for ( ; *p; MB_PTR_ADV(p))
|
2013-07-03 16:53:03 +02:00
|
|
|
{
|
|
|
|
if (*p == '\\' && p[1] != NUL)
|
|
|
|
++p;
|
|
|
|
else if (vim_strchr((char_u *)
|
2016-02-23 14:53:34 +01:00
|
|
|
#if defined(MSWIN)
|
2013-07-03 16:53:03 +02:00
|
|
|
"$%"
|
|
|
|
#else
|
|
|
|
"$"
|
|
|
|
#endif
|
|
|
|
, *p) != NULL)
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef SPECIAL_WILDCHAR
|
|
|
|
/*
|
2017-02-23 17:07:14 +01:00
|
|
|
* Return TRUE if "p" contains a special wildcard character, one that Vim
|
|
|
|
* cannot expand, requires using a shell.
|
2013-07-03 16:53:03 +02:00
|
|
|
*/
|
|
|
|
static int
|
2016-01-30 19:39:49 +01:00
|
|
|
has_special_wildchar(char_u *p)
|
2013-07-03 16:53:03 +02:00
|
|
|
{
|
2017-03-12 19:22:36 +01:00
|
|
|
for ( ; *p; MB_PTR_ADV(p))
|
2013-07-03 16:53:03 +02:00
|
|
|
{
|
2019-04-10 22:15:19 +02:00
|
|
|
// Disallow line break characters.
|
|
|
|
if (*p == '\r' || *p == '\n')
|
|
|
|
break;
|
|
|
|
// Allow for escaping.
|
|
|
|
if (*p == '\\' && p[1] != NUL && p[1] != '\r' && p[1] != '\n')
|
2013-07-03 16:53:03 +02:00
|
|
|
++p;
|
|
|
|
else if (vim_strchr((char_u *)SPECIAL_WILDCHAR, *p) != NULL)
|
2019-04-10 22:15:19 +02:00
|
|
|
{
|
|
|
|
// A { must be followed by a matching }.
|
|
|
|
if (*p == '{' && vim_strchr(p, '}') == NULL)
|
|
|
|
continue;
|
|
|
|
// A quote and backtick must be followed by another one.
|
|
|
|
if ((*p == '`' || *p == '\'') && vim_strchr(p, *p) == NULL)
|
|
|
|
continue;
|
2013-07-03 16:53:03 +02:00
|
|
|
return TRUE;
|
2019-04-10 22:15:19 +02:00
|
|
|
}
|
2013-07-03 16:53:03 +02:00
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2004-06-13 20:20:40 +00:00
|
|
|
/*
|
|
|
|
* Generic wildcard expansion code.
|
|
|
|
*
|
|
|
|
* Characters in "pat" that should not be expanded must be preceded with a
|
|
|
|
* backslash. E.g., "/path\ with\ spaces/my\*star*"
|
|
|
|
*
|
|
|
|
* Return FAIL when no single file was found. In this case "num_file" is not
|
|
|
|
* set, and "file" may contain an error message.
|
|
|
|
* Return OK when some files found. "num_file" is set to the number of
|
|
|
|
* matches, "file" to the array of matches. Call FreeWild() later.
|
|
|
|
*/
|
|
|
|
int
|
2016-01-30 19:39:49 +01:00
|
|
|
gen_expand_wildcards(
|
|
|
|
int num_pat, /* number of input patterns */
|
|
|
|
char_u **pat, /* array of input patterns */
|
|
|
|
int *num_file, /* resulting number of files */
|
|
|
|
char_u ***file, /* array of resulting files */
|
|
|
|
int flags) /* EW_* flags */
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
garray_T ga;
|
|
|
|
char_u *p;
|
|
|
|
static int recursive = FALSE;
|
|
|
|
int add_pat;
|
2015-08-25 13:57:04 +02:00
|
|
|
int retval = OK;
|
2010-08-15 13:29:11 +02:00
|
|
|
#if defined(FEAT_SEARCHPATH)
|
|
|
|
int did_expand_in_path = FALSE;
|
|
|
|
#endif
|
2004-06-13 20:20:40 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* expand_env() is called to expand things like "~user". If this fails,
|
|
|
|
* it calls ExpandOne(), which brings us back here. In this case, always
|
|
|
|
* call the machine specific expansion function, if possible. Otherwise,
|
|
|
|
* return FAIL.
|
|
|
|
*/
|
|
|
|
if (recursive)
|
|
|
|
#ifdef SPECIAL_WILDCHAR
|
|
|
|
return mch_expand_wildcards(num_pat, pat, num_file, file, flags);
|
|
|
|
#else
|
|
|
|
return FAIL;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef SPECIAL_WILDCHAR
|
|
|
|
/*
|
|
|
|
* If there are any special wildcard characters which we cannot handle
|
|
|
|
* here, call machine specific function for all the expansion. This
|
|
|
|
* avoids starting the shell for each argument separately.
|
|
|
|
* For `=expr` do use the internal function.
|
|
|
|
*/
|
|
|
|
for (i = 0; i < num_pat; i++)
|
|
|
|
{
|
2013-07-03 16:53:03 +02:00
|
|
|
if (has_special_wildchar(pat[i])
|
2004-06-13 20:20:40 +00:00
|
|
|
# ifdef VIM_BACKTICK
|
|
|
|
&& !(vim_backtick(pat[i]) && pat[i][1] == '=')
|
|
|
|
# endif
|
|
|
|
)
|
|
|
|
return mch_expand_wildcards(num_pat, pat, num_file, file, flags);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
recursive = TRUE;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The matching file names are stored in a growarray. Init it empty.
|
|
|
|
*/
|
|
|
|
ga_init2(&ga, (int)sizeof(char_u *), 30);
|
|
|
|
|
|
|
|
for (i = 0; i < num_pat; ++i)
|
|
|
|
{
|
|
|
|
add_pat = -1;
|
|
|
|
p = pat[i];
|
|
|
|
|
|
|
|
#ifdef VIM_BACKTICK
|
|
|
|
if (vim_backtick(p))
|
2015-08-25 13:57:04 +02:00
|
|
|
{
|
2004-06-13 20:20:40 +00:00
|
|
|
add_pat = expand_backtick(&ga, p, flags);
|
2015-08-25 13:57:04 +02:00
|
|
|
if (add_pat == -1)
|
|
|
|
retval = FAIL;
|
|
|
|
}
|
2004-06-13 20:20:40 +00:00
|
|
|
else
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* First expand environment variables, "~/" and "~user/".
|
|
|
|
*/
|
2019-05-23 21:35:48 +02:00
|
|
|
if ((has_env_var(p) && !(flags & EW_NOTENV)) || *p == '~')
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
2007-09-26 20:36:32 +00:00
|
|
|
p = expand_env_save_opt(p, TRUE);
|
2004-06-13 20:20:40 +00:00
|
|
|
if (p == NULL)
|
|
|
|
p = pat[i];
|
|
|
|
#ifdef UNIX
|
|
|
|
/*
|
|
|
|
* On Unix, if expand_env() can't expand an environment
|
|
|
|
* variable, use the shell to do that. Discard previously
|
|
|
|
* found file names and start all over again.
|
|
|
|
*/
|
2013-07-03 16:53:03 +02:00
|
|
|
else if (has_env_var(p) || *p == '~')
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
vim_free(p);
|
2009-06-24 14:25:49 +00:00
|
|
|
ga_clear_strings(&ga);
|
2004-06-13 20:20:40 +00:00
|
|
|
i = mch_expand_wildcards(num_pat, pat, num_file, file,
|
2014-08-29 12:58:44 +02:00
|
|
|
flags|EW_KEEPDOLLAR);
|
2004-06-13 20:20:40 +00:00
|
|
|
recursive = FALSE;
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If there are wildcards: Expand file names and add each match to
|
|
|
|
* the list. If there is no match, and EW_NOTFOUND is given, add
|
|
|
|
* the pattern.
|
|
|
|
* If there are no wildcards: Add the file name if it exists or
|
|
|
|
* when EW_NOTFOUND is given.
|
|
|
|
*/
|
|
|
|
if (mch_has_exp_wildcard(p))
|
2010-07-14 16:52:17 +02:00
|
|
|
{
|
|
|
|
#if defined(FEAT_SEARCHPATH)
|
2010-08-15 13:29:11 +02:00
|
|
|
if ((flags & EW_PATH)
|
|
|
|
&& !mch_isFullName(p)
|
|
|
|
&& !(p[0] == '.'
|
|
|
|
&& (vim_ispathsep(p[1])
|
|
|
|
|| (p[1] == '.' && vim_ispathsep(p[2]))))
|
|
|
|
)
|
2010-08-04 17:07:20 +02:00
|
|
|
{
|
2010-08-15 13:29:11 +02:00
|
|
|
/* :find completion where 'path' is used.
|
|
|
|
* Recursiveness is OK here. */
|
2010-08-04 17:07:20 +02:00
|
|
|
recursive = FALSE;
|
2010-07-14 16:52:17 +02:00
|
|
|
add_pat = expand_in_path(&ga, p, flags);
|
2010-08-04 17:07:20 +02:00
|
|
|
recursive = TRUE;
|
2010-08-15 13:29:11 +02:00
|
|
|
did_expand_in_path = TRUE;
|
2010-08-04 17:07:20 +02:00
|
|
|
}
|
2010-07-14 16:52:17 +02:00
|
|
|
else
|
|
|
|
#endif
|
|
|
|
add_pat = mch_expandpath(&ga, p, flags);
|
|
|
|
}
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (add_pat == -1 || (add_pat == 0 && (flags & EW_NOTFOUND)))
|
|
|
|
{
|
|
|
|
char_u *t = backslash_halve_save(p);
|
|
|
|
|
|
|
|
/* When EW_NOTFOUND is used, always add files and dirs. Makes
|
|
|
|
* "vim c:/" work. */
|
|
|
|
if (flags & EW_NOTFOUND)
|
|
|
|
addfile(&ga, t, flags | EW_DIR | EW_FILE);
|
2016-07-07 14:29:10 +02:00
|
|
|
else
|
2004-06-13 20:20:40 +00:00
|
|
|
addfile(&ga, t, flags);
|
|
|
|
vim_free(t);
|
|
|
|
}
|
|
|
|
|
2010-07-14 16:59:57 +02:00
|
|
|
#if defined(FEAT_SEARCHPATH)
|
2010-08-15 13:29:11 +02:00
|
|
|
if (did_expand_in_path && ga.ga_len > 0 && (flags & EW_PATH))
|
2010-07-14 16:59:57 +02:00
|
|
|
uniquefy_paths(&ga, p);
|
|
|
|
#endif
|
2004-06-13 20:20:40 +00:00
|
|
|
if (p != pat[i])
|
|
|
|
vim_free(p);
|
|
|
|
}
|
|
|
|
|
|
|
|
*num_file = ga.ga_len;
|
|
|
|
*file = (ga.ga_data != NULL) ? (char_u **)ga.ga_data : (char_u **)"";
|
|
|
|
|
|
|
|
recursive = FALSE;
|
|
|
|
|
2016-01-17 18:23:58 +01:00
|
|
|
return ((flags & EW_EMPTYOK) || ga.ga_data != NULL) ? retval : FAIL;
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# ifdef VIM_BACKTICK
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Return TRUE if we can expand this backtick thing here.
|
|
|
|
*/
|
|
|
|
static int
|
2016-01-30 19:39:49 +01:00
|
|
|
vim_backtick(char_u *p)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
return (*p == '`' && *(p + 1) != NUL && *(p + STRLEN(p) - 1) == '`');
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Expand an item in `backticks` by executing it as a command.
|
|
|
|
* Currently only works when pat[] starts and ends with a `.
|
2015-08-25 13:57:04 +02:00
|
|
|
* Returns number of file names found, -1 if an error is encountered.
|
2004-06-13 20:20:40 +00:00
|
|
|
*/
|
|
|
|
static int
|
2016-01-30 19:39:49 +01:00
|
|
|
expand_backtick(
|
|
|
|
garray_T *gap,
|
|
|
|
char_u *pat,
|
|
|
|
int flags) /* EW_* flags */
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
char_u *p;
|
|
|
|
char_u *cmd;
|
|
|
|
char_u *buffer;
|
|
|
|
int cnt = 0;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* Create the command: lop off the backticks. */
|
|
|
|
cmd = vim_strnsave(pat + 1, (int)STRLEN(pat) - 2);
|
|
|
|
if (cmd == NULL)
|
2015-08-25 13:57:04 +02:00
|
|
|
return -1;
|
2004-06-13 20:20:40 +00:00
|
|
|
|
|
|
|
#ifdef FEAT_EVAL
|
|
|
|
if (*cmd == '=') /* `={expr}`: Expand expression */
|
2006-03-06 23:29:24 +00:00
|
|
|
buffer = eval_to_string(cmd + 1, &p, TRUE);
|
2004-06-13 20:20:40 +00:00
|
|
|
else
|
|
|
|
#endif
|
2004-09-13 20:26:32 +00:00
|
|
|
buffer = get_cmd_output(cmd, NULL,
|
2014-04-05 19:44:40 +02:00
|
|
|
(flags & EW_SILENT) ? SHELL_SILENT : 0, NULL);
|
2004-06-13 20:20:40 +00:00
|
|
|
vim_free(cmd);
|
|
|
|
if (buffer == NULL)
|
2015-08-25 13:57:04 +02:00
|
|
|
return -1;
|
2004-06-13 20:20:40 +00:00
|
|
|
|
|
|
|
cmd = buffer;
|
|
|
|
while (*cmd != NUL)
|
|
|
|
{
|
|
|
|
cmd = skipwhite(cmd); /* skip over white space */
|
|
|
|
p = cmd;
|
|
|
|
while (*p != NUL && *p != '\r' && *p != '\n') /* skip over entry */
|
|
|
|
++p;
|
|
|
|
/* add an entry if it is not empty */
|
|
|
|
if (p > cmd)
|
|
|
|
{
|
|
|
|
i = *p;
|
|
|
|
*p = NUL;
|
|
|
|
addfile(gap, cmd, flags);
|
|
|
|
*p = i;
|
|
|
|
++cnt;
|
|
|
|
}
|
|
|
|
cmd = p;
|
|
|
|
while (*cmd != NUL && (*cmd == '\r' || *cmd == '\n'))
|
|
|
|
++cmd;
|
|
|
|
}
|
|
|
|
|
|
|
|
vim_free(buffer);
|
|
|
|
return cnt;
|
|
|
|
}
|
|
|
|
# endif /* VIM_BACKTICK */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Add a file to a file list. Accepted flags:
|
|
|
|
* EW_DIR add directories
|
|
|
|
* EW_FILE add files
|
2006-03-07 22:38:47 +00:00
|
|
|
* EW_EXEC add executable files
|
2004-06-13 20:20:40 +00:00
|
|
|
* EW_NOTFOUND add even when it doesn't exist
|
|
|
|
* EW_ADDSLASH add slash after directory name
|
2015-03-05 21:21:19 +01:00
|
|
|
* EW_ALLLINKS add symlink also when the referred file does not exist
|
2004-06-13 20:20:40 +00:00
|
|
|
*/
|
|
|
|
void
|
2016-01-30 19:39:49 +01:00
|
|
|
addfile(
|
|
|
|
garray_T *gap,
|
|
|
|
char_u *f, /* filename */
|
|
|
|
int flags)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
char_u *p;
|
|
|
|
int isdir;
|
2016-07-01 17:17:39 +02:00
|
|
|
stat_T sb;
|
2004-06-13 20:20:40 +00:00
|
|
|
|
2015-03-05 21:21:19 +01:00
|
|
|
/* if the file/dir/link doesn't exist, may not add it */
|
|
|
|
if (!(flags & EW_NOTFOUND) && ((flags & EW_ALLLINKS)
|
2015-03-06 22:00:11 +01:00
|
|
|
? mch_lstat((char *)f, &sb) < 0 : mch_getperm(f) < 0))
|
2004-06-13 20:20:40 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
#ifdef FNAME_ILLEGAL
|
|
|
|
/* if the file/dir contains illegal characters, don't add it */
|
|
|
|
if (vim_strpbrk(f, (char_u *)FNAME_ILLEGAL) != NULL)
|
|
|
|
return;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
isdir = mch_isdir(f);
|
|
|
|
if ((isdir && !(flags & EW_DIR)) || (!isdir && !(flags & EW_FILE)))
|
|
|
|
return;
|
|
|
|
|
2015-03-21 17:32:19 +01:00
|
|
|
/* If the file isn't executable, may not add it. Do accept directories.
|
|
|
|
* When invoked from expand_shellcmd() do not use $PATH. */
|
|
|
|
if (!isdir && (flags & EW_EXEC)
|
|
|
|
&& !mch_can_exe(f, NULL, !(flags & EW_SHELLCMD)))
|
2006-03-07 22:38:47 +00:00
|
|
|
return;
|
|
|
|
|
2004-06-13 20:20:40 +00:00
|
|
|
/* Make room for another item in the file list. */
|
|
|
|
if (ga_grow(gap, 1) == FAIL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
p = alloc((unsigned)(STRLEN(f) + 1 + isdir));
|
|
|
|
if (p == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
STRCPY(p, f);
|
|
|
|
#ifdef BACKSLASH_IN_FILENAME
|
|
|
|
slash_adjust(p);
|
|
|
|
#endif
|
|
|
|
/*
|
|
|
|
* Append a slash or backslash after directory names if none is present.
|
|
|
|
*/
|
|
|
|
#ifndef DONT_ADD_PATHSEP_TO_DIR
|
|
|
|
if (isdir && (flags & EW_ADDSLASH))
|
|
|
|
add_pathsep(p);
|
|
|
|
#endif
|
|
|
|
((char_u **)gap->ga_data)[gap->ga_len++] = p;
|
|
|
|
}
|
|
|
|
#endif /* !NO_EXPANDPATH */
|
|
|
|
|
|
|
|
#if defined(VIM_BACKTICK) || defined(FEAT_EVAL) || defined(PROTO)
|
|
|
|
|
|
|
|
#ifndef SEEK_SET
|
|
|
|
# define SEEK_SET 0
|
|
|
|
#endif
|
|
|
|
#ifndef SEEK_END
|
|
|
|
# define SEEK_END 2
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get the stdout of an external command.
|
2014-04-05 19:44:40 +02:00
|
|
|
* If "ret_len" is NULL replace NUL characters with NL. When "ret_len" is not
|
|
|
|
* NULL store the length there.
|
2004-06-13 20:20:40 +00:00
|
|
|
* Returns an allocated string, or NULL for error.
|
|
|
|
*/
|
|
|
|
char_u *
|
2016-01-30 19:39:49 +01:00
|
|
|
get_cmd_output(
|
|
|
|
char_u *cmd,
|
|
|
|
char_u *infile, /* optional input file name */
|
|
|
|
int flags, /* can be SHELL_SILENT */
|
|
|
|
int *ret_len)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
char_u *tempname;
|
|
|
|
char_u *command;
|
|
|
|
char_u *buffer = NULL;
|
|
|
|
int len;
|
|
|
|
int i = 0;
|
|
|
|
FILE *fd;
|
|
|
|
|
|
|
|
if (check_restricted() || check_secure())
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
/* get a name for the temp file */
|
2015-03-31 13:33:08 +02:00
|
|
|
if ((tempname = vim_tempname('o', FALSE)) == NULL)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
2019-01-13 23:38:42 +01:00
|
|
|
emsg(_(e_notmp));
|
2004-06-13 20:20:40 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Add the redirection stuff */
|
2004-09-13 20:26:32 +00:00
|
|
|
command = make_filter_cmd(cmd, infile, tempname);
|
2004-06-13 20:20:40 +00:00
|
|
|
if (command == NULL)
|
|
|
|
goto done;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Call the shell to execute the command (errors are ignored).
|
|
|
|
* Don't check timestamps here.
|
|
|
|
*/
|
|
|
|
++no_check_timestamps;
|
|
|
|
call_shell(command, SHELL_DOOUT | SHELL_EXPAND | flags);
|
|
|
|
--no_check_timestamps;
|
|
|
|
|
|
|
|
vim_free(command);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* read the names from the file into memory
|
|
|
|
*/
|
|
|
|
# ifdef VMS
|
2007-05-10 19:06:20 +00:00
|
|
|
/* created temporary file is not always readable as binary */
|
2004-06-13 20:20:40 +00:00
|
|
|
fd = mch_fopen((char *)tempname, "r");
|
|
|
|
# else
|
|
|
|
fd = mch_fopen((char *)tempname, READBIN);
|
|
|
|
# endif
|
|
|
|
|
|
|
|
if (fd == NULL)
|
|
|
|
{
|
2019-01-13 23:38:42 +01:00
|
|
|
semsg(_(e_notopen), tempname);
|
2004-06-13 20:20:40 +00:00
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
fseek(fd, 0L, SEEK_END);
|
|
|
|
len = ftell(fd); /* get size of temp file */
|
|
|
|
fseek(fd, 0L, SEEK_SET);
|
|
|
|
|
|
|
|
buffer = alloc(len + 1);
|
|
|
|
if (buffer != NULL)
|
|
|
|
i = (int)fread((char *)buffer, (size_t)1, (size_t)len, fd);
|
|
|
|
fclose(fd);
|
|
|
|
mch_remove(tempname);
|
|
|
|
if (buffer == NULL)
|
|
|
|
goto done;
|
|
|
|
#ifdef VMS
|
|
|
|
len = i; /* VMS doesn't give us what we asked for... */
|
|
|
|
#endif
|
|
|
|
if (i != len)
|
|
|
|
{
|
2019-01-13 23:38:42 +01:00
|
|
|
semsg(_(e_notread), tempname);
|
2018-02-10 18:45:26 +01:00
|
|
|
VIM_CLEAR(buffer);
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
2014-04-05 19:44:40 +02:00
|
|
|
else if (ret_len == NULL)
|
2013-08-03 14:10:50 +02:00
|
|
|
{
|
|
|
|
/* Change NUL into SOH, otherwise the string is truncated. */
|
|
|
|
for (i = 0; i < len; ++i)
|
2013-08-03 17:31:28 +02:00
|
|
|
if (buffer[i] == NUL)
|
|
|
|
buffer[i] = 1;
|
2013-08-03 14:10:50 +02:00
|
|
|
|
2010-07-28 22:29:10 +02:00
|
|
|
buffer[len] = NUL; /* make sure the buffer is terminated */
|
2013-08-03 14:10:50 +02:00
|
|
|
}
|
2014-04-05 19:44:40 +02:00
|
|
|
else
|
|
|
|
*ret_len = len;
|
2004-06-13 20:20:40 +00:00
|
|
|
|
|
|
|
done:
|
|
|
|
vim_free(tempname);
|
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Free the list of files returned by expand_wildcards() or other expansion
|
|
|
|
* functions.
|
|
|
|
*/
|
|
|
|
void
|
2016-01-30 19:39:49 +01:00
|
|
|
FreeWild(int count, char_u **files)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
2006-04-20 22:17:20 +00:00
|
|
|
if (count <= 0 || files == NULL)
|
2004-06-13 20:20:40 +00:00
|
|
|
return;
|
|
|
|
while (count--)
|
|
|
|
vim_free(files[count]);
|
|
|
|
vim_free(files);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2010-07-11 20:46:53 +02:00
|
|
|
* Return TRUE when need to go to Insert mode because of 'insertmode'.
|
2004-06-13 20:20:40 +00:00
|
|
|
* Don't do this when still processing a command or a mapping.
|
|
|
|
* Don't do this when inside a ":normal" command.
|
|
|
|
*/
|
|
|
|
int
|
2016-01-30 19:39:49 +01:00
|
|
|
goto_im(void)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
return (p_im && stuff_empty() && typebuf_typed());
|
|
|
|
}
|
2014-05-07 15:10:21 +02:00
|
|
|
|
|
|
|
/*
|
2014-05-22 14:00:16 +02:00
|
|
|
* Returns the isolated name of the shell in allocated memory:
|
2014-05-07 15:10:21 +02:00
|
|
|
* - Skip beyond any path. E.g., "/usr/bin/csh -f" -> "csh -f".
|
|
|
|
* - Remove any argument. E.g., "csh -f" -> "csh".
|
|
|
|
* But don't allow a space in the path, so that this works:
|
|
|
|
* "/usr/bin/csh --rcfile ~/.cshrc"
|
|
|
|
* But don't do that for Windows, it's common to have a space in the path.
|
|
|
|
*/
|
|
|
|
char_u *
|
2016-01-30 19:39:49 +01:00
|
|
|
get_isolated_shell_name(void)
|
2014-05-07 15:10:21 +02:00
|
|
|
{
|
|
|
|
char_u *p;
|
|
|
|
|
2019-02-17 17:44:42 +01:00
|
|
|
#ifdef MSWIN
|
2014-05-07 15:10:21 +02:00
|
|
|
p = gettail(p_sh);
|
|
|
|
p = vim_strnsave(p, (int)(skiptowhite(p) - p));
|
|
|
|
#else
|
|
|
|
p = skiptowhite(p_sh);
|
|
|
|
if (*p == NUL)
|
|
|
|
{
|
|
|
|
/* No white space, use the tail. */
|
|
|
|
p = vim_strsave(gettail(p_sh));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
char_u *p1, *p2;
|
|
|
|
|
|
|
|
/* Find the last path separator before the space. */
|
|
|
|
p1 = p_sh;
|
2017-03-12 19:22:36 +01:00
|
|
|
for (p2 = p_sh; p2 < p; MB_PTR_ADV(p2))
|
2014-05-07 15:10:21 +02:00
|
|
|
if (vim_ispathsep(*p2))
|
|
|
|
p1 = p2 + 1;
|
|
|
|
p = vim_strnsave(p1, (int)(p - p1));
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return p;
|
|
|
|
}
|
2019-02-13 23:13:28 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Check if the "://" of a URL is at the pointer, return URL_SLASH.
|
|
|
|
* Also check for ":\\", which MS Internet Explorer accepts, return
|
|
|
|
* URL_BACKSLASH.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
path_is_url(char_u *p)
|
|
|
|
{
|
|
|
|
if (STRNCMP(p, "://", (size_t)3) == 0)
|
|
|
|
return URL_SLASH;
|
|
|
|
else if (STRNCMP(p, ":\\\\", (size_t)3) == 0)
|
|
|
|
return URL_BACKSLASH;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check if "fname" starts with "name://". Return URL_SLASH if it does.
|
|
|
|
* Return URL_BACKSLASH for "name:\\".
|
|
|
|
* Return zero otherwise.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
path_with_url(char_u *fname)
|
|
|
|
{
|
|
|
|
char_u *p;
|
|
|
|
|
|
|
|
for (p = fname; isalpha(*p); ++p)
|
|
|
|
;
|
|
|
|
return path_is_url(p);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Return TRUE if "name" is a full (absolute) path name or URL.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
vim_isAbsName(char_u *name)
|
|
|
|
{
|
|
|
|
return (path_with_url(name) != 0 || mch_isFullName(name));
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get absolute file name into buffer "buf[len]".
|
|
|
|
*
|
|
|
|
* return FAIL for failure, OK otherwise
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
vim_FullName(
|
|
|
|
char_u *fname,
|
|
|
|
char_u *buf,
|
|
|
|
int len,
|
|
|
|
int force) /* force expansion even when already absolute */
|
|
|
|
{
|
|
|
|
int retval = OK;
|
|
|
|
int url;
|
|
|
|
|
|
|
|
*buf = NUL;
|
|
|
|
if (fname == NULL)
|
|
|
|
return FAIL;
|
|
|
|
|
|
|
|
url = path_with_url(fname);
|
|
|
|
if (!url)
|
|
|
|
retval = mch_FullName(fname, buf, len, force);
|
|
|
|
if (url || retval == FAIL)
|
|
|
|
{
|
|
|
|
/* something failed; use the file name (truncate when too long) */
|
|
|
|
vim_strncpy(buf, fname, len - 1);
|
|
|
|
}
|
|
|
|
#if defined(MSWIN)
|
|
|
|
slash_adjust(buf);
|
|
|
|
#endif
|
|
|
|
return retval;
|
|
|
|
}
|