Searched refs:idx2 (Results 1 – 9 of 9) sorted by relevance
| /vim-8.2.3635/src/ |
| H A D | textformat.c | 512 int idx1 = 0, idx2 = 0; in same_leader() local 555 for (idx2 = 0; idx2 < leader2_len; ++idx2) in same_leader() 557 if (!VIM_ISWHITE(line2[idx2])) in same_leader() 559 if (line1[idx1++] != line2[idx2]) in same_leader() 568 return (idx2 == leader2_len && idx1 == leader1_len); in same_leader()
|
| H A D | diff.c | 1958 diff_equal_entry(diff_T *dp, int idx1, int idx2) in diff_equal_entry() argument 1964 if (dp->df_count[idx1] != dp->df_count[idx2]) in diff_equal_entry() 1975 dp->df_lnum[idx2] + i, FALSE)); in diff_equal_entry() 3029 int idx2; in diff_get_corresponding_line_int() local 3034 idx2 = diff_buf_idx(curbuf); in diff_get_corresponding_line_int() 3052 if (baseline > dp->df_count[idx2]) in diff_get_corresponding_line_int() 3053 baseline = dp->df_count[idx2]; in diff_get_corresponding_line_int() 3055 return dp->df_lnum[idx2] + baseline; in diff_get_corresponding_line_int() 3059 && (dp->df_lnum[idx2] <= curwin->w_cursor.lnum) in diff_get_corresponding_line_int() 3060 && ((dp->df_lnum[idx2] + dp->df_count[idx2]) in diff_get_corresponding_line_int() [all …]
|
| H A D | drawline.c | 192 int idx1, idx2; in text_prop_compare() local 197 idx2 = *(int *)s2; in text_prop_compare() 199 pt2 = text_prop_type_by_id(current_buf, current_text_props[idx2].tp_type); in text_prop_compare() 209 col2 = current_text_props[idx2].tp_col; in text_prop_compare()
|
| H A D | list.c | 845 long idx2, in list_assign_range() argument 867 if (src_li == NULL || (!empty_idx2 && idx2 == idx)) in list_assign_range() 896 if (src_li == NULL || (!empty_idx2 && idx2 == idx)) in list_assign_range() 917 : idx != idx2) in list_assign_range()
|
| H A D | quickfix.c | 3610 int idx2 = -1; in qf_list() local 3630 if (!get_list_range(&arg, &idx1, &idx2) || *arg != NUL) in qf_list() 3639 idx2 = i + idx1; in qf_list() 3647 if (idx2 < 0) in qf_list() 3648 idx2 = (-idx2 > i) ? 0 : idx2 + i + 1; in qf_list() 3670 if ((qfp->qf_valid || all) && idx1 <= i && i <= idx2) in qf_list()
|
| H A D | search.c | 4599 int idx2 = ((fuzzyItem_T *)s2)->idx; in fuzzy_match_item_compare() local 4601 return v1 == v2 ? (idx1 - idx2) : v1 > v2 ? -1 : 1; in fuzzy_match_item_compare()
|
| H A D | if_lua.c | 285 int (*dll_lua_rawequal) (lua_State *L, int idx1, int idx2);
|
| /vim-8.2.3635/src/proto/ |
| H A D | list.pro | 35 int list_assign_range(list_T *dest, list_T *src, long idx1_arg, long idx2, int empty_idx2, char_u *…
|
| /vim-8.2.3635/runtime/doc/ |
| H A D | eval.txt | 13044 :let {var-name}[{idx1}:{idx2}] = {expr1} *E708* *E709* *E710* 13049 {idx2} can be omitted, meaning the end of the list.
|