Home
last modified time | relevance | path

Searched refs:col2 (Results 1 – 20 of 20) sorted by relevance

/vim-8.2.3635/runtime/syntax/
H A Dcolortest.vim76 let col2 = substitute(expand("<cword>"), '\a\+_on_\(\a\+\)', '\1', "") variable
77 exec 'hi col_'.col1.'_'.col2.' ctermfg='.col1.' guifg='.col1.' ctermbg='.col2.' guibg='.col2
78 exec 'syn keyword col_'.col1.'_'.col2.' '.col1.'_on_'.col2
/vim-8.2.3635/src/
H A Dclipboard.c351 int col2) in clip_compare_pos() argument
427 int col2, in clip_invert_area() argument
450 col1 = col2; in clip_invert_area()
452 col2 = tmp_col; in clip_invert_area()
473 if (col2 < max_col) in clip_invert_area()
531 int col2) in clip_update_modeless_selection() argument
548 cb->end.col = col2; in clip_update_modeless_selection()
1015 row = col1; col1 = col2; col2 = row; in clip_copy_modeless_selection()
1019 row = col1; col1 = col2; col2 = row; in clip_copy_modeless_selection()
1025 col2 = clip_star.max_col; in clip_copy_modeless_selection()
[all …]
H A Dgui.c1803 int col2) in gui_clear_block() argument
2703 int row1, col1, row2, col2; in gui_redraw() local
2708 col2 = X_2_COL(x + w - 1); in gui_redraw()
2732 int col2, in gui_redraw_block() argument
2750 col2 = check_col(col2); in gui_redraw_block()
2759 orig_col2 = col2; in gui_redraw_block()
2766 col2 = orig_col2; in gui_redraw_block()
2774 ScreenLines + off + col2); in gui_redraw_block()
2793 if (col2 + 1 < Columns && ScreenLines[off + col2 + 1] == 0) in gui_redraw_block()
2794 ++col2; in gui_redraw_block()
[all …]
H A Dcharset.c999 colnr_T col2; in win_lbr_chartabsize() local
1045 col2 = col; in win_lbr_chartabsize()
1063 && (col2 == col || !VIM_ISBREAK((int)*ps)))))) in win_lbr_chartabsize()
1066 col2 += win_chartabsize(wp, s, col2); in win_lbr_chartabsize()
1067 if (col2 >= colmax) // doesn't fit in win_lbr_chartabsize()
H A Ddrawline.c194 colnr_T col1, col2; in text_prop_compare() local
209 col2 = current_text_props[idx2].tp_col; in text_prop_compare()
210 return col1 == col2 ? 0 : col1 > col2 ? 1 : -1; in text_prop_compare()
H A Dgui_haiku.cc253 void mchClearBlock(int row1, int col1, int row2, int col2);
1761 int col2) in mchClearBlock() argument
1764 FILL_X(col2 + 1) - PEN_WIDTH, FILL_Y(row2 + 1) - PEN_WIDTH); in mchClearBlock()
4403 int col2) in gui_mch_clear_block() argument
4406 gui.vimTextArea->mchClearBlock(row1, col1, row2, col2); in gui_mch_clear_block()
H A Dgui_x11.c2732 int col2) in gui_mch_clear_block() argument
2741 (col2 - col1 + 1) * gui.char_width + (col2 == Columns - 1), in gui_mch_clear_block()
H A Dgui_gtk_x11.c6361 int col2 = check_col(col2arg); in gui_mch_clear_block() local
6383 (col2 - col1 + 1) * gui.char_width + (col2 == Columns - 1), in gui_mch_clear_block()
6411 (col2 - col1 + 1) * gui.char_width in gui_mch_clear_block()
6412 + (col2 == Columns - 1), in gui_mch_clear_block()
H A Dgui_photon.c2052 gui_mch_clear_block(int row1, int col1, int row2, int col2) in gui_mch_clear_block() argument
2056 { FILL_X(col2 + 1) - 1, FILL_Y(row2 + 1) - 1} in gui_mch_clear_block()
H A Dgui_w32.c2188 int col2) in gui_mch_clear_block() argument
2199 rc.right = FILL_X(col2 + 1) + (col2 == Columns - 1); in gui_mch_clear_block()
/vim-8.2.3635/runtime/ftplugin/
H A Docaml.vim466 " - lin2,col2: position of expression last char
469 function! s:Block_pattern(lin1,lin2,col1,col2) argument
477 let end_num3 = end_num2 + a:col2
538 let col2 = col(".")
541 return [lin1,lin2,col1-1,col2]
548 return [cursor_line,lin2,cursor_col-1,col2+1]
551 return [cursor_line,lin2,cursor_col-1,col2]
554 return [cursor_line,lin2,cursor_col-1,col2]
557 return [cursor_line,lin2,cursor_col-1,col2]
561 if col1 == 0 || col2 == 0
[all …]
/vim-8.2.3635/runtime/autoload/
H A Dccomplete.vim129 let col2 = col - 1
130 while line[col2] != ';'
131 let col2 -= 1
133 let line = strpart(line, col2 + 1)
134 let col -= col2
139 let col2 = col - 1
140 while line[col2] != ','
141 let col2 -= 1
143 if strpart(line, col2 + 1, col - col2 - 1) =~ ' *[^ ][^ ]* *[^ ]'
144 let line = strpart(line, col2 + 1)
[all …]
/vim-8.2.3635/src/proto/
H A Dgui.pro21 void gui_clear_block(int row1, int col1, int row2, int col2);
31 void gui_redraw_block(int row1, int col1, int row2, int col2, int flags);
H A Dgui_x11.pro45 void gui_mch_clear_block(int row1, int col1, int row2, int col2);
H A Dgui_photon.pro38 void gui_mch_clear_block(int row1, int col1, int row2, int col2);
H A Dgui_haiku.pro58 void gui_mch_clear_block(int row1, int col1, int row2, int col2);
H A Dgui_w32.pro33 void gui_mch_clear_block(int row1, int col1, int row2, int col2);
/vim-8.2.3635/src/testdir/
H A Dtest_visual.vim524 let [line2, col2] = searchpos('.\u', 'nW')
526 call setpos("'>", [0, line2, col2, 0])
563 let [line2, col2] = searchpos('.\u', 'nW')
565 call setpos("'>", [0, line2, col2, 0])
H A Dtest_mapping.vim360 let [g:lnum2, g:col2] = searchpos('-', 'W')
369 call cursor([g:lnum2, g:col2])
/vim-8.2.3635/runtime/doc/
H A Dtodo.txt3829 - Add COLUMN NUMBERS to ":" commands ":line1,line2[col1,col2]cmd". Block
3830 can be selected with CTRL-V. Allow '$' (end of line) for col2.