Home
last modified time | relevance | path

Searched refs:skipstart (Results 1 – 3 of 3) sorted by relevance

/vim-8.2.3635/src/testdir/
H A Dtest_textprop.vim155 " With skipstart left at false (default), this should find the prop at line
160 " With skipstart set to true, this should skip the prop at line 5 col 4.
161 let result = prop_find({'type': 'prop_name', 'lnum': 5, 'col': 4, 'skipstart': 1}, 'b')
169 " with skipstart set to false, if the start position is anywhere between the
180 " with skipstart set to true, if the start position is anywhere between the
183 let result = prop_find({'type': 'prop_name', 'skipstart': 1}, 'b')
185 let result = prop_find({'type': 'prop_name', 'skipstart': 1}, 'f')
188 " Use skipstart to search through all props with type name 'prop_name'.
194 let result = prop_find({'type': 'prop_name', 'lnum': lnum, 'col': col, 'skipstart': 1}, 'f')
221 let result = prop_find({'id': 10, 'skipstart': 1}, 'b')
[all …]
/vim-8.2.3635/src/
H A Dtextprop.c724 int skipstart = 0; in f_prop_find() local
782 skipstart = dict_get_bool(dict, (char_u *)"skipstart", 0); in f_prop_find()
862 if (start_pos_has_prop && !skipstart) in f_prop_find()
869 if (start_pos_has_prop && skipstart && !seen_end) in f_prop_find()
/vim-8.2.3635/runtime/doc/
H A Dtextprop.txt220 skipstart do not look for a match at the start