Home
last modified time | relevance | path

Searched refs:rest (Results 1 – 25 of 127) sorted by relevance

123456

/vim-8.2.3635/src/
H A Dsyntax.c4849 rest = skipwhite(rest)) in syn_cmd_keyword()
4853 if (rest == NULL || ends_excmd2(eap->arg, rest)) in syn_cmd_keyword()
4856 while (*rest != NUL && !VIM_ISWHITE(*rest)) in syn_cmd_keyword()
4858 if (*rest == '\\' && rest[1] != NUL) in syn_cmd_keyword()
4859 ++rest; in syn_cmd_keyword()
4969 rest = get_syn_pattern(rest, &item); in syn_cmd_match()
5101 if (rest == NULL || ends_excmd2(eap->cmd, rest)) in syn_cmd_region()
5109 key = vim_strnsave_up(rest, key_end - rest); in syn_cmd_region()
5139 rest = skipwhite(rest + 1); in syn_cmd_region()
5192 rest = get_syn_pattern(rest, ppp->pp_synp); in syn_cmd_region()
[all …]
H A Dui.c912 static char_u *rest = NULL; // unconverted rest of previous read in fill_input_buf() local
939 if (rest != NULL) in fill_input_buf()
947 mch_memmove(inbuf + inbufcount, rest, unconverted); in fill_input_buf()
949 VIM_CLEAR(rest); in fill_input_buf()
953 mch_memmove(rest, rest + unconverted, restlen); in fill_input_buf()
1029 rest == NULL ? &rest : NULL, &restlen); in fill_input_buf()
H A Dstrings.c1375 char_u *rest; in f_strridx() local
1410 for (rest = haystack; *rest != '\0'; ++rest) in f_strridx()
1412 rest = (char_u *)strstr((char *)rest, (char *)needle); in f_strridx()
1413 if (rest == NULL || rest > haystack + end_idx) in f_strridx()
1415 lastmatch = rest; in f_strridx()
H A Dif_mzsch.c2619 Scheme_Object *rest = NULL; in set_buffer_line_list() local
2623 MZ_GC_VAR_IN_REG(1, rest); in set_buffer_line_list()
2628 rest = line_list; in set_buffer_line_list()
2631 line = SCHEME_CAR(rest); in set_buffer_line_list()
2632 rest = SCHEME_CDR(rest); in set_buffer_line_list()
2800 Scheme_Object *rest = NULL; in insert_buffer_line_list() local
2806 MZ_GC_VAR_IN_REG(1, rest); in insert_buffer_line_list()
2811 rest = list; in insert_buffer_line_list()
2814 line = SCHEME_CAR(rest); in insert_buffer_line_list()
2815 rest = SCHEME_CDR(rest); in insert_buffer_line_list()
H A Dos_mac_conv.c234 char_u *rest, in enc2macroman() argument
247 rest[*restlenp++] = from[--fromlen]; in enc2macroman()
H A Dos_unix.c6069 int rest; in WaitForCharOrMouse() local
6092 rest = 0; in WaitForCharOrMouse()
6094 rest = msec; in WaitForCharOrMouse()
6099 if (rest != 0) in WaitForCharOrMouse()
6102 if (rest >= 0 && rest < XT_TRACE_DELAY) in WaitForCharOrMouse()
6103 msec = rest; in WaitForCharOrMouse()
6104 if (rest >= 0) in WaitForCharOrMouse()
6105 rest -= msec; in WaitForCharOrMouse()
6126 if (rest == 0 || !do_xterm_trace()) in WaitForCharOrMouse()
6136 || (!avail && rest != 0) in WaitForCharOrMouse()
H A Dmemline.c5499 int rest; in ml_updatechunk() local
5606 rest = count - idx; in ml_updatechunk()
5607 if (linecnt + rest > MLCS_MINL) in ml_updatechunk()
5615 linecnt += rest; in ml_updatechunk()
5675 rest = dp->db_txt_end - dp->db_txt_start; in ml_updatechunk()
5677 rest = in ml_updatechunk()
5680 curchnk->mlcs_totalsize = rest; in ml_updatechunk()
5682 curchnk[-1].mlcs_totalsize -= rest; in ml_updatechunk()
/vim-8.2.3635/runtime/tools/
H A Defm_perl.pl95 my ($file, $lineno, $message, $rest);
99 ($message, $file, $lineno, $rest) = ($1, $2, $3, $4);
101 $message .= $rest if ($rest =~ s/^,//);
/vim-8.2.3635/src/testdir/
H A Dtest_lispwords.vim25 \ '(defmacro page (name title &rest body)',
40 \ '(defmacro with-link (dest &rest body)',
60 \ '(defmacro page (name title &rest body)',
75 \ '(defmacro with-link (dest &rest body)',
H A Dtest_netbeans.py29 (line, sep, rest) = msgbuf.partition('\n')
33 msgbuf = rest
H A Dtest_vim9_func.vim479 def MyVarargs(arg: string, ...rest: list<string>): string
481 for s in rest
1182 def MyDefVarargs(one: string, two = 'foo', ...rest: list<string>): string
1184 for s in rest
2011 ...rest: list<string>
2013 return arg1 .. arg2 .. join(rest, '-')
2019 ...rest: list<string> # comment
2021 return arg1 .. arg2 .. join(rest, '-')
2207 def MakeArgRefsVarargs(theArg: string, ...rest: list<string>)
2209 g:UseVararg = (s) => theArg .. '/' .. local .. '/' .. s .. '/' .. join(rest)
H A Dscreendump.vim11 " Skip the rest if there is no terminal feature at all.
H A Dterm_util.vim17 " Skip the rest if there is no terminal feature at all.
/vim-8.2.3635/runtime/doc/
H A Dremote.txt30 The rest of the command line is taken as the
117 start up according to the rest of the command line and do the editing by
133 rest of the command line and sent as described above.
138 Note that the --remote and --remote-wait arguments will consume the rest of
/vim-8.2.3635/src/proto/
H A Dos_mac_conv.pro4 int enc2macroman(char_u *from, size_t fromlen, char_u *to, int *tolenp, int maxtolen, char_u *rest,…
/vim-8.2.3635/runtime/syntax/
H A Dlftp.vim83 \ rest-l[ist] rest-s[tor]
H A Drobots.vim33 " Disallow: or User-Agent: and the rest of the line before an eventual comment
H A Djess.vim66 syn keyword jessFunc rest$ retract retract-string
H A Dfoxpro.vim488 syn match foxproCmd "^\s*\<rest\%[ore]\>\s*\<from\>"
489 syn match foxproCmd "^\s*\<rest\%[ore]\>\s*\<macr\%[os]\>"
490 syn match foxproCmd "^\s*\<rest\%[ore]\>\s*\<scre\%[en]\>"
491 syn match foxproCmd "^\s*\<rest\%[ore]\>\s*\<wind\%[ow]\>"
H A Dtsalt.vim123 " the rest is pretty close to C -----------------------------------------
/vim-8.2.3635/runtime/autoload/
H A Dclojurecomplete.vim12rest","chunked-seq?","class","class?","clear-agent-errors","clojure-version","coll?","comment","co…
H A Dcsscomplete.vim9 …pective-origin pointer-events position prefix quotes range resize rest rest-before rest-after righ…
417 elseif prop =~ 'rest\%(-after\|-before\)\=$'
/vim-8.2.3635/runtime/indent/
H A Dbzl.vim82 " Delegate the rest to the original function.
/vim-8.2.3635/runtime/macros/life/
H A Dlife.vim223 " Delete and execute the rest of the line
226 " Yank and execute the rest of the line
/vim-8.2.3635/runtime/plugin/
H A Dmatchparen.vim30 " Skip the rest if it was already done.

123456