| /vim-8.2.3635/src/ |
| H A D | debugger.c | 55 char *tail = NULL; in do_debug() local 161 tail = "ont"; in do_debug() 164 tail = "ext"; in do_debug() 167 tail = "tep"; in do_debug() 174 tail = "rame"; in do_debug() 179 tail = "inish"; in do_debug() 183 tail = "uit"; in do_debug() 190 tail = "t"; in do_debug() 198 tail = "p"; in do_debug() 201 tail = "own"; in do_debug() [all …]
|
| H A D | misc1.c | 1336 char_u *tail; in expand_env_esc() local 1390 tail = src + 1; in expand_env_esc() 1399 while (c-- > 0 && *tail && *tail != '}') in expand_env_esc() 1400 *var++ = *tail++; in expand_env_esc() 1405 while (c-- > 0 && *tail != NUL && ((vim_isIDc(*tail)) in expand_env_esc() 1427 ++tail; in expand_env_esc() 1441 tail = src + 1; in expand_env_esc() 1449 tail = src; in expand_env_esc() 1453 && *tail in expand_env_esc() 1570 ++tail; in expand_env_esc() [all …]
|
| H A D | findfile.c | 2650 char_u *p, *tail, *start; in simplify_filename() local 2710 tail = p + 1; in simplify_filename() 2713 MB_PTR_ADV(tail); in simplify_filename() 2716 STRMOVE(p, tail); in simplify_filename() 2723 tail = p + 2; in simplify_filename() 2725 MB_PTR_ADV(tail); in simplify_filename() 2766 saved_char = *tail; in simplify_filename() 2767 *tail = NUL; in simplify_filename() 2772 *tail = saved_char; in simplify_filename() 2812 p = tail; in simplify_filename() [all …]
|
| H A D | filepath.c | 300 char_u *tail; in modify_fname() local 497 while (tail > s && after_pathsep(s, tail)) in modify_fname() 516 while (tail > s && !after_pathsep(s, tail)) in modify_fname() 581 *fnamep = tail; in modify_fname() 596 for ( ; s > tail; --s) in modify_fname() 601 if (s > tail) in modify_fname() 622 if (limit < tail) in modify_fname() 623 limit = tail; in modify_fname() 726 tail = gettail(str); in shorten_dir_len() 2447 if (tail == fname) in do_browse() [all …]
|
| H A D | memline.c | 1813 char_u *tail; in recover_names() local 1926 tail = concat_fnames(dir_name, tail, TRUE); in recover_names() 1928 if (tail == NULL) in recover_names() 1933 vim_free(tail); in recover_names() 4451 char_u *tail; in resolve_symlink() local 4456 STRCPY(tail, buf); in resolve_symlink() 4544 char_u *tail; in get_file_in_dir() local 4558 save_char = *tail; in get_file_in_dir() 4559 *tail = NUL; in get_file_in_dir() 4561 *tail = save_char; in get_file_in_dir() [all …]
|
| H A D | fileio.c | 1773 char_u *tail = NULL; in readfile() local 1791 while (tail > ptr && (*tail & 0xc0) == 0x80) in readfile() 1792 --tail; in readfile() 1793 if (tail + utf_byte2len(*tail) <= ptr + size) in readfile() 1794 tail = NULL; in readfile() 1796 p = tail; in readfile() 1804 tail = p; in readfile() 1819 tail = p; in readfile() 1829 tail = p; in readfile() 1834 if (tail != NULL) in readfile() [all …]
|
| H A D | netbeans.c | 3115 sign_entry_T *tail; in netbeans_gutter_click() local 3124 for (tail = p->se_next; in netbeans_gutter_click() 3125 tail->se_next && tail->se_next->se_lnum == lnum in netbeans_gutter_click() 3126 && tail->se_next->se_id < GUARDEDOFFSET; in netbeans_gutter_click() 3127 tail = tail->se_next) in netbeans_gutter_click() 3131 p->se_next = tail->se_next; in netbeans_gutter_click() 3132 if (tail->se_next) in netbeans_gutter_click() 3133 tail->se_next->se_prev = p; in netbeans_gutter_click() 3134 p->se_prev = tail; in netbeans_gutter_click() 3135 tail->se_next = p; in netbeans_gutter_click()
|
| H A D | autocmd.c | 233 char_u *tail; // tail of fname member 1868 char_u *tail; in apply_autocmds_group() local 2131 tail = gettail(fname); in apply_autocmds_group() 2139 patcmd.tail = tail; in apply_autocmds_group() 2346 apc->sfname, apc->tail, ap->allow_dirs)) in auto_next_pat() 2457 char_u *tail = gettail(sfname); in has_autocmd() local 2479 fname, sfname, tail, ap->allow_dirs) in has_autocmd()
|
| H A D | strings.c | 1593 char_u *tail; in f_trim() local 1662 tail = head + STRLEN(head); in f_trim() 1666 for (; tail > head; tail = prev) in f_trim() 1668 prev = tail; in f_trim() 1686 rettv->vval.v_string = vim_strnsave(head, tail - head); in f_trim()
|
| H A D | vim9script.c | 483 char_u *tail = gettail(si->sn_name); in handle_import() local 487 len = STRLEN(si->sn_name) - STRLEN(tail) + STRLEN(tv.vval.v_string) + 2; in handle_import() 491 vim_strncpy(from_name, si->sn_name, tail - si->sn_name); in handle_import()
|
| H A D | eval.c | 6356 char_u *tail; in do_string_sub() local 6375 tail = str; in do_string_sub() 6377 while (vim_regexec_nl(®match, str, (colnr_T)(tail - str))) in do_string_sub() 6385 i = mb_ptr2len(tail); in do_string_sub() 6386 mch_memmove((char_u *)ga.ga_data + ga.ga_len, tail, in do_string_sub() 6389 tail += i; in do_string_sub() 6403 if (ga_grow(&ga, (int)((end - tail) + sublen - in do_string_sub() 6411 i = (int)(regmatch.startp[0] - tail); in do_string_sub() 6417 tail = regmatch.endp[0]; in do_string_sub() 6418 if (*tail == NUL) in do_string_sub() [all …]
|
| H A D | scriptfile.c | 250 char_u *tail; in do_in_path() local 307 tail = buf + STRLEN(buf); in do_in_path() 314 copy_option_part(&np, tail, (int)(MAXPATHL - (tail - buf)), in do_in_path()
|
| H A D | quickfix.c | 1052 *tail = rmp->startp[midx]; in qf_parse_fmt_r() 1172 char_u **tail) in qf_parse_match() argument 1203 status = qf_parse_fmt_r(regmatch, midx, tail); in qf_parse_match() 1228 char_u **tail) in qf_parse_get_fields() argument 1250 *tail = NULL; in qf_parse_get_fields() 1259 fields, qf_multiline, qf_multiscan, tail); in qf_parse_get_fields() 1298 char_u *tail) in qf_parse_file_pfx() argument 1309 if (tail && *tail) in qf_parse_file_pfx() 1311 STRMOVE(IObuff, skipwhite(tail)); in qf_parse_file_pfx() 1406 char_u *tail = NULL; in qf_parse_line() local [all …]
|
| H A D | os_unix.c | 2745 char_u *slash, *tail; in fname_case() local 2756 tail = name; in fname_case() 2763 tail = slash + 1; in fname_case() 2772 if (STRICMP(tail, dp->d_name) == 0 in fname_case() 2773 && STRLEN(tail) == STRLEN(dp->d_name)) in fname_case() 2780 vim_strncpy(newname + (tail - name), (char_u *)dp->d_name, in fname_case() 2781 MAXPATHL - (tail - name)); in fname_case() 2786 STRCPY(tail, dp->d_name); in fname_case()
|
| /vim-8.2.3635/runtime/ftplugin/ |
| H A D | cobol.vim | 150 let tail = strpart(getline('.'),7) 151 let indent = match(tail,'[^ ]') 156 let tail = s:repeat(" ",4-indent).tail 159 let tail = s:repeat(" ",shift*sw).tail 163 let tail = strpart(tail,-shift * sw) 165 let tail = strpart(tail,indent - 4) 167 let tail = strpart(tail,indent) 170 call setline('.',head.tail)
|
| /vim-8.2.3635/runtime/pack/dist/opt/matchit/autoload/ |
| H A D | matchit.vim | 338 let tail = strpart(groups, i, j-i-1) . ":" 341 let i = matchend(tail, s:notslash . ':') 344 let word = strpart(tail, 0, i-1) 345 let tail = strpart(tail, i) 346 let i = matchend(tail, s:notslash . ':') 348 endwhile " Now, tail has been used up. 512 let i = matchend(tail, s:notslash . a:comma) 517 let current = strpart(tail, 0, i-1) 524 let tail = strpart(tail, i) 529 let current = strpart(tail, 0, i-1) [all …]
|
| /vim-8.2.3635/src/xdiff/ |
| H A D | xutils.c | 76 cha->head = cha->tail = NULL; in xdl_cha_init() 107 if (cha->tail) in xdl_cha_alloc() 108 cha->tail->next = ancur; in xdl_cha_alloc() 111 cha->tail = ancur; in xdl_cha_alloc()
|
| H A D | xtypes.h | 34 chanode_t *head, *tail; member
|
| /vim-8.2.3635/src/testdir/ |
| H A D | test_spell_utf8.vim | 296 \"tail/123", 662 …call RunGoodBad("meea1 meezero meea\u00E9 bar prebar barmeat prebarmeat leadprebar lead tail lead… 664 … \ ["bar", "barmeat", "lead", "meea1", "meea\u00E9", "meezero", "prebar", "prebarmeat", "tail"], 666 \ ["bad", ["bar", "lead", "tail"]], 674 \ ["taillead", ["tail lead", "tail"]],
|
| H A D | test_method.vim | 105 eval 'foo'->FuncRef('bar', 'tail')->assert_equal('foobartail') 110 call assert_fails("eval 'foo'->FuncRef('bar', 'tail', 'four')", 'E118:')
|
| H A D | test_spell.vim | 606 …call RunGoodBad("meea1 meezero meea\xE9 bar prebar barmeat prebarmeat leadprebar lead tail leadta… 608 … \ ["bar", "barmeat", "lead", "meea1", "meea\xE9", "meezero", "prebar", "prebarmeat", "tail"], 610 \ ["bad", ["bar", "lead", "tail"]], 618 \ ["taillead", ["tail lead", "tail"]], 1128 \"tail/123",
|
| /vim-8.2.3635/runtime/syntax/ |
| H A D | rebol.vim | 94 syn keyword rebolLogicFunction head? tail? 117 syn keyword rebolStatement pick remove second select skip sort tail third trim length?
|
| H A D | b.vim | 19 …q iseq1 iterate last max min mod perm pred prj1 prj2 ran rel rev seq seq1 size skip succ tail union
|
| /vim-8.2.3635/runtime/indent/ |
| H A D | rpl.vim | 27 " Strip tail comment
|
| /vim-8.2.3635/src/proto/ |
| H A D | fileio.pro | 39 int match_file_pat(char_u *pattern, regprog_T **prog, char_u *fname, char_u *sfname, char_u *tail, …
|