Home
last modified time | relevance | path

Searched refs:matches (Results 1 – 25 of 244) sorted by relevance

12345678910

/vim-8.2.3635/runtime/doc/
H A Dpattern.txt575 Example matches ~
620 Example matches ~
626 Example matches ~
711 line where "bar" matches. If ".*bar" matches somewhere the \@! will
779 Example matches ~
799 Example matches ~
809 Example matches ~
815 matches end-of-line <EOL>; at other positions, matches literal '$'.
826 Example matches ~
1401 matches.
[all …]
H A Dusr_27.txt38 matches.)
54 pattern matches ~
68 pattern matches ~
280 matches "abbb", "abbbb" and "abbbbb".
318 matches "axbxb" as a whole.
341 This matches "endif", "endwhile" and "endfor".
407 item matches equivalent ~
459 item matches option ~
492 "\s" matches white space, "\_s" matches white space or a line break.
493 Similarly, "\a" matches an alphabetic character, and "\_a" matches an
[all …]
H A Dhelphelp.txt41 are several matches, the "best" match will be used.
62 matches will be found. You can get an idea how this
65 If there are several matches, you can have them listed
79 matches, "tselect" to list matches and choose one. >
83 < When there is no argument you will see matches for
84 "help", to avoid listing all possible matches (that
86 The number of matches displayed is limited to 300.
114 in which {pattern} matches. Jumps to the first match.
115 The optional [@xx] specifies that only matches in the
117 You can navigate through the matches with the
[all …]
H A Dpi_paren.txt33 change the value to highlight different matches. Note that not everything is
38 in a string or comment syntax item, then matches inside string and comment
55 used, see |matchit-install|. This plugin also helps to skip matches in
H A Dusr_43.txt108 ruby file. The danger of a pattern ending in "*" is that it quickly matches
132 checked in the order in which they were defined. The *.txt pattern matches,
134 ruby matches too, and the "setf ruby" is executed. But since 'filetype' was
137 checked. Only the one for ruby matches and "setf ruby" sets 'filetype' to
172 If this is not sufficient for you, add an autocommand that matches all files
H A Dusr_03.txt418 The "\>" item is a special marker that only matches at the end of a word.
419 Similarly "\<" only matches at the beginning of a word. Thus to search for
433 and press "n" to go along all the matches.
438 If you now search for "nr", Vim will highlight all matches. That is a very
513 you find it above the 6. The pattern "include" matches the word include
514 anywhere on the line. But the pattern "^include" matches the word include
516 The $ character matches the end of a line. Therefore, "was$" matches the
519 Let's mark the places where "/the" matches in this example line with "x"s:
540 The . (dot) character matches any existing character. For example, the
541 pattern "c.m" matches a string whose first character is a c, whose second
[all …]
H A Dquickref.txt129 matches any single character . \.
130 matches start of line ^ ^
131 matches <EOL> $ $
132 matches start of word \< \<
133 matches end of word \> \>
136 matches an identifier char \i \i
147 matches <Esc> \e \e
148 matches <Tab> \t \t
149 matches <CR> \r \r
150 matches <BS> \b \b
[all …]
H A Dusr_12.txt115 The first part between \( \) matches "Last" \( \)
118 matches ", " literally ,
119 The second part between \( \) matches "First" \( \)
189 The "^" regular expression matches the beginning of the line (even if the line
291 that the ":substitute" command matches with is "\s\+$". This finds white
307 matches can be found.
350 matches and where they are.
H A Dusr_20.txt197 it again. If there are more matches, you will see them all, one at a time.
203 Then it starts all over again. Thus Vim cycles through the list of matches.
225 Again, if you repeat typing the <Tab>, Vim will cycle through all matches.
249 When there are many matches, you would like to see an overview. Do this by
260 Vim lists the matches and then comes back with the text you typed. You can
262 <BS> to correct the word. If there are many matches, type a few more
278 The 'wildmenu' option can be used to get a menu-like list of matches.
H A Dcmdline.txt257 matches the current command-line (see below).
262 matches the current command-line (see below).
396 delay when there are very many matches.
414 again and there were multiple matches, the next
435 If there are multiple matches the longest common part is
462 matches exactly one character.
731 /{pattern}[/] the next line where {pattern} matches *:/*
732 ?{pattern}[?] the previous line where {pattern} matches *:?*
734 pattern matches
736 pattern matches
[all …]
H A Dusr_24.txt14 |24.2| Showing matches
97 *24.2* Showing matches
99 When you type a ) it would be nice to see with which ( it matches. To make
135 this case, it is "ch_", which matches with the word ch_array. So typing
147 gives you the next word that matches, in this case "total". A third CTRL-P
153 file, CTRL-N and CTRL-P will find the same matches, but in a different
172 when searching for matches.
175 matches while ignoring case ('ignorecase' must be set) but still using the
202 the current directory for files and displays each one that matches the word in
233 matches are sorted alphabetically.
/vim-8.2.3635/runtime/autoload/
H A Dccomplete.vim59 " Return list of matches.
191 " Remove static matches in other files.
403 " Return the list of matches.
492 " Return a list with resulting matches.
546 " Put matching members in matches[].
547 let matches = []
564 call add(matches, item)
569 if len(matches) > 0
596 for i in range(len(a:matches))
598 if has_key(a:matches[i], 'dict')
[all …]
H A Dadacomplete.vim35 " look up matches
41 " search tag file for matches
/vim-8.2.3635/src/
H A Dhelp.c29 char_u **matches; in ex_help() local
97 len = (int)STRLEN(matches[i]); in ex_help()
98 if (len > 3 && matches[i][len - 3] == '@' in ex_help()
99 && STRICMP(matches[i] + len - 2, lang) == 0) in ex_help()
112 FreeWild(num_matches, matches); in ex_help()
117 tag = vim_strsave(matches[i]); in ex_help()
118 FreeWild(num_matches, matches); in ex_help()
322 char_u ***matches, in find_help_tags() argument
559 *matches = (char_u **)""; in find_help_tags()
569 qsort((void *)*matches, (size_t)*num_matches, in find_help_tags()
[all …]
H A Dtag.c597 matches = new_matches; in do_tag()
820 char_u **matches) in print_tag_list() argument
1013 char_u **matches) in add_llist_tags() argument
1632 char_u **matches; in find_tags() local
2784 matches = NULL; in find_tags()
2791 if (matches == NULL) in find_tags()
2813 *matchesp = matches; in find_tags()
4000 char_u **matches, *p; in get_tags() local
4018 vim_free(matches[i]); in get_tags()
4083 vim_free(matches[i]); in get_tags()
[all …]
H A Dif_cscope.c1218 char **matches = NULL, **contexts = NULL; in cs_find_common() local
1225 if (matches == NULL) in cs_find_common()
1614 char **matches, in cs_manage_matches() argument
1628 assert(matches != NULL); in cs_manage_matches()
1632 mp = matches; in cs_manage_matches()
1808 char **matches = NULL; in cs_fill_results() local
1847 if (matches[totsofar] != NULL) in cs_fill_results()
1860 VIM_CLEAR(matches); in cs_fill_results()
1864 *matches_p = matches; in cs_fill_results()
1924 strcpy(tbuf, matches[0]); in cs_print_tags_priv()
[all …]
H A Dos_amiga.c1517 int matches; in mch_expandpath() local
1592 matches = gap->ga_len - start_len; in mch_expandpath()
1596 else if (matches == 0 && Result != ERROR_OBJECT_NOT_FOUND in mch_expandpath()
1604 if (matches) in mch_expandpath()
1606 (size_t)matches, sizeof(char_u *), sortcmp); in mch_expandpath()
1625 return matches; in mch_expandpath()
H A Dsearch.c4298 int_u *matches, in fuzzy_match_compute_score() argument
4324 int_u currIdx = matches[i]; in fuzzy_match_compute_score()
4328 int_u prevIdx = matches[i - 1]; in fuzzy_match_compute_score()
4391 int_u *matches, in fuzzy_match_recursive() argument
4446 &recursiveScore, strBegin, strLen, matches, in fuzzy_match_recursive()
4462 matches[nextMatch++] = strIdx; in fuzzy_match_recursive()
4487 memcpy(matches, bestRecursiveMatches, maxMatches * sizeof(matches[0])); in fuzzy_match_recursive()
4518 int_u *matches, in fuzzy_match() argument
4630 int_u matches[MAX_FUZZY_MATCHES]; in fuzzy_match_in_list() local
4681 sizeof(matches) / sizeof(matches[0]))) in fuzzy_match_in_list()
[all …]
H A Dinsexpand.c805 char_u **matches, in ins_compl_add_matches() argument
817 FreeWild(num_matches, matches); in ins_compl_add_matches()
2785 char_u **matches; in ins_compl_get_exp() local
2979 if (find_tags(compl_pattern, &num_matches, &matches, in ins_compl_get_exp()
2983 ins_compl_add_matches(num_matches, matches, p_ic); in ins_compl_get_exp()
2994 tilde_replace(compl_pattern, num_matches, matches); in ins_compl_get_exp()
3002 char_u *ptr = matches[i]; in ins_compl_get_exp()
3023 &num_matches, &matches) == EXPAND_OK) in ins_compl_get_exp()
3024 ins_compl_add_matches(num_matches, matches, FALSE); in ins_compl_get_exp()
3037 compl_pattern, &matches); in ins_compl_get_exp()
[all …]
/vim-8.2.3635/runtime/ftplugin/
H A Dsystemd.vim24 …let matches = matchlist(getline(search('\v^\s*\[\s*.+\s*\]\s*$', 'nbWz')), '\v^\s*\[\s*(\k+).*\]\s…
25 if len(matches) > 1
26 let section = matches[1]
/vim-8.2.3635/src/testdir/
H A Dtest_match.vim34 " --- Check that "matchadd()" and "getmatches()" agree on added matches and
44 " --- Check that "matchdelete()" deletes the matches defined in the previous
56 " --- Check that "clearmatches()" clears all matches defined by ":match" and
67 " --- Check that "setmatches()" restores a list of matches saved by
82 " --- Check that "setmatches()" will not add two matches with the same ID. The
142 " Check, that setmatches() can correctly restore the matches from matchaddpos()
352 " Test for deleting matches outside of the screen redraw top/bottom lines
H A Dtest_matchfuzzy.vim25 " matches with same score should not be reordered
42 " prefer complete matches over separator matches
80 " matches with same score should not be reordered
/vim-8.2.3635/runtime/syntax/
H A Dcabal.vim11 " Added cabalStatementRegion to limit matches of keywords, which fixes
14 " and cabalVersion matches.
47 " Case sensitive matches
54 " Case insensitive matches
/vim-8.2.3635/runtime/pack/dist/opt/matchit/doc/
H A Dmatchit.txt94 Next, the script looks for a word on the current line that matches the pattern
103 If more than one pattern in |b:match_words| matches, choose the one
112 also matches. If the cursor is on the "t", however, then '<tag>' is
113 preferred, because this matches a bit of text containing the cursor.
120 Then "if" matches, which is probably not what you want, but if the
261 matches the end of "endif" but "\<if\>" does not.) Then banging on the "%"
282 matches the whole string whereas "<.\{-}>" and "<[^>]*>" match "<tag>" and
359 that matches, with |backref|s unparsed.
370 matches |b:match_match|.
/vim-8.2.3635/runtime/indent/
H A Dpov.vim24 " Counts matches of a regexp <rexp> in line number <line>.
25 " Doesn't count matches inside strings and comments (as defined by current

12345678910