mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
Merge #9979 from janlazo/vim-8.0.0876
vim-patch:8.0.{876,1144},8.1.0133
This commit is contained in:
commit
bc395b4fd4
@ -1346,6 +1346,15 @@ void slash_adjust(char_u *p)
|
|||||||
if (path_with_url((const char *)p)) {
|
if (path_with_url((const char *)p)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (*p == '`') {
|
||||||
|
// don't replace backslash in backtick quoted strings
|
||||||
|
const size_t len = STRLEN(p);
|
||||||
|
if (len > 2 && *(p + len - 1) == '`') {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
while (*p) {
|
while (*p) {
|
||||||
if (*p == (char_u)psepcN) {
|
if (*p == (char_u)psepcN) {
|
||||||
*p = (char_u)psepc;
|
*p = (char_u)psepc;
|
||||||
|
@ -430,7 +430,11 @@ static efm_T * parse_efm_option(char_u *efm)
|
|||||||
for (int round = FMT_PATTERNS - 1; round >= 0; ) {
|
for (int round = FMT_PATTERNS - 1; round >= 0; ) {
|
||||||
i += STRLEN(fmt_pat[round--].pattern);
|
i += STRLEN(fmt_pat[round--].pattern);
|
||||||
}
|
}
|
||||||
|
#ifdef BACKSLASH_IN_FILENAME
|
||||||
|
i += 12; // "%f" can become twelve chars longer (see efm_to_regpat)
|
||||||
|
#else
|
||||||
i += 2; // "%f" can become two chars longer
|
i += 2; // "%f" can become two chars longer
|
||||||
|
#endif
|
||||||
char_u *fmtstr = xmalloc(i);
|
char_u *fmtstr = xmalloc(i);
|
||||||
|
|
||||||
while (efm[0] != NUL) {
|
while (efm[0] != NUL) {
|
||||||
|
@ -1970,7 +1970,13 @@ static garray_T tag_fnames = GA_EMPTY_INIT_VALUE;
|
|||||||
*/
|
*/
|
||||||
static void found_tagfile_cb(char_u *fname, void *cookie)
|
static void found_tagfile_cb(char_u *fname, void *cookie)
|
||||||
{
|
{
|
||||||
GA_APPEND(char_u *, &tag_fnames, vim_strsave(fname));
|
char_u *const tag_fname = vim_strsave(fname);
|
||||||
|
|
||||||
|
#ifdef BACKSLASH_IN_FILENAME
|
||||||
|
slash_adjust(tag_fname);
|
||||||
|
#endif
|
||||||
|
simplify_filename(tag_fname);
|
||||||
|
GA_APPEND(char_u *, &tag_fnames, tag_fname);
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined(EXITFREE)
|
#if defined(EXITFREE)
|
||||||
@ -2028,9 +2034,20 @@ get_tagfname (
|
|||||||
++tnp->tn_hf_idx;
|
++tnp->tn_hf_idx;
|
||||||
STRCPY(buf, p_hf);
|
STRCPY(buf, p_hf);
|
||||||
STRCPY(path_tail(buf), "tags");
|
STRCPY(path_tail(buf), "tags");
|
||||||
} else
|
#ifdef BACKSLASH_IN_FILENAME
|
||||||
STRLCPY(buf, ((char_u **)(tag_fnames.ga_data))[
|
slash_adjust(buf);
|
||||||
tnp->tn_hf_idx++], MAXPATHL);
|
#endif
|
||||||
|
simplify_filename(buf);
|
||||||
|
|
||||||
|
for (int i = 0; i < tag_fnames.ga_len; i++) {
|
||||||
|
if (STRCMP(buf, ((char_u **)(tag_fnames.ga_data))[i]) == 0) {
|
||||||
|
return FAIL; // avoid duplicate file names
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
STRLCPY(buf, ((char_u **)(tag_fnames.ga_data))[tnp->tn_hf_idx++],
|
||||||
|
MAXPATHL);
|
||||||
|
}
|
||||||
return OK;
|
return OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
" test 'taglist' function and :tags command
|
" test taglist(), tagfiles() functions and :tags command
|
||||||
|
|
||||||
func Test_taglist()
|
func Test_taglist()
|
||||||
call writefile([
|
call writefile([
|
||||||
@ -74,3 +74,26 @@ func Test_tagsfile_without_trailing_newline()
|
|||||||
|
|
||||||
call delete('Xtags')
|
call delete('Xtags')
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
|
func Test_tagfiles()
|
||||||
|
call assert_equal([], tagfiles())
|
||||||
|
|
||||||
|
call writefile(["FFoo\tXfoo\t1"], 'Xtags1')
|
||||||
|
call writefile(["FBar\tXbar\t1"], 'Xtags2')
|
||||||
|
set tags=Xtags1,Xtags2
|
||||||
|
call assert_equal(['Xtags1', 'Xtags2'], tagfiles())
|
||||||
|
|
||||||
|
help
|
||||||
|
let tf = tagfiles()
|
||||||
|
call assert_equal(1, len(tf))
|
||||||
|
call assert_equal(fnamemodify(expand('$VIMRUNTIME/doc/tags'), ':p:gs?\\?/?'),
|
||||||
|
\ fnamemodify(tf[0], ':p:gs?\\?/?'))
|
||||||
|
helpclose
|
||||||
|
call assert_equal(['Xtags1', 'Xtags2'], tagfiles())
|
||||||
|
set tags&
|
||||||
|
call assert_equal([], tagfiles())
|
||||||
|
|
||||||
|
call delete('Xtags1')
|
||||||
|
call delete('Xtags2')
|
||||||
|
bd
|
||||||
|
endfunc
|
||||||
|
Loading…
Reference in New Issue
Block a user