| /vim-8.2.3635/src/ |
| H A D | clipboard.c | 349 int col1, in clip_compare_pos() argument 425 int col1, in clip_invert_area() argument 448 tmp_col = col1; in clip_invert_area() 450 col1 = col2; in clip_invert_area() 460 clip_invert_rectangle(cbd, row1, col1, 1, col2 - col1, invert); in clip_invert_area() 465 if (col1 > 0) in clip_invert_area() 529 int col1, in clip_update_modeless_selection() argument 1015 row = col1; col1 = col2; col2 = row; in clip_copy_modeless_selection() 1019 row = col1; col1 = col2; col2 = row; in clip_copy_modeless_selection() 1036 col1 -= (*mb_head_off)(p, p + col1); in clip_copy_modeless_selection() [all …]
|
| H A D | gui.c | 1801 int col1, in gui_clear_block() argument 2706 col1 = X_2_COL(x); in gui_redraw() 2730 int col1, in gui_redraw_block() argument 2749 col1 = check_col(col1); in gui_redraw_block() 2758 orig_col1 = col1; in gui_redraw_block() 2765 col1 = orig_col1; in gui_redraw_block() 2770 if (col1 > 0) in gui_redraw_block() 2780 if (col1 > 0) in gui_redraw_block() 2781 --col1; in gui_redraw_block() 2797 gui.col = col1; in gui_redraw_block() [all …]
|
| H A D | drawline.c | 194 colnr_T col1, col2; in text_prop_compare() local 208 col1 = current_text_props[idx1].tp_col; in text_prop_compare() 210 return col1 == col2 ? 0 : col1 > col2 ? 1 : -1; in text_prop_compare()
|
| H A D | gui_haiku.cc | 253 void mchClearBlock(int row1, int col1, int row2, int col2); 1759 int col1, in mchClearBlock() argument 1763 BRect r(FILL_X(col1), FILL_Y(row1), in mchClearBlock() 4401 int col1, in gui_mch_clear_block() argument 4406 gui.vimTextArea->mchClearBlock(row1, col1, row2, col2); in gui_mch_clear_block()
|
| H A D | gui_x11.c | 2730 int col1, in gui_mch_clear_block() argument 2736 x = FILL_X(col1); in gui_mch_clear_block() 2741 (col2 - col1 + 1) * gui.char_width + (col2 == Columns - 1), in gui_mch_clear_block()
|
| H A D | gui_gtk_x11.c | 6360 int col1 = check_col(col1arg); in gui_mch_clear_block() local 6382 FILL_X(col1), FILL_Y(row1), in gui_mch_clear_block() 6383 (col2 - col1 + 1) * gui.char_width + (col2 == Columns - 1), in gui_mch_clear_block() 6410 FILL_X(col1), FILL_Y(row1), in gui_mch_clear_block() 6411 (col2 - col1 + 1) * gui.char_width in gui_mch_clear_block()
|
| H A D | gui_photon.c | 2052 gui_mch_clear_block(int row1, int col1, int row2, int col2) in gui_mch_clear_block() argument 2055 { FILL_X(col1), FILL_Y(row1) }, in gui_mch_clear_block()
|
| H A D | gui_w32.c | 2186 int col1, in gui_mch_clear_block() argument 2197 rc.left = FILL_X(col1); in gui_mch_clear_block()
|
| /vim-8.2.3635/runtime/syntax/ |
| H A D | colortest.vim | 75 let col1 = 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/runtime/ftplugin/ |
| H A D | ocaml.vim | 465 "In: - lin1,col1: position of expression first char 469 function! s:Block_pattern(lin1,lin2,col1,col2) argument 472 let start_num3 = start_num2 + a:col1 535 let col1 = col(".") 541 return [lin1,lin2,col1-1,col2] 559 let [lin1,col1] = searchpos('\v%('.s:ocaml_word_char.'|\.)*','ncb') 561 if col1 == 0 || col2 == 0 564 return [cursor_line,cursor_line,col1-1,col2] 572 let [lin1,lin2,col1,col2] = s:Match_borders(a:mode) 573 return s:Extract_type_data(s:Block_pattern(lin1,lin2,col1,col2), a:annot_file_name)
|
| /vim-8.2.3635/src/proto/ |
| H A D | gui.pro | 21 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 D | gui_x11.pro | 45 void gui_mch_clear_block(int row1, int col1, int row2, int col2);
|
| H A D | gui_photon.pro | 38 void gui_mch_clear_block(int row1, int col1, int row2, int col2);
|
| H A D | gui_haiku.pro | 58 void gui_mch_clear_block(int row1, int col1, int row2, int col2);
|
| H A D | gui_w32.pro | 33 void gui_mch_clear_block(int row1, int col1, int row2, int col2);
|
| /vim-8.2.3635/src/testdir/ |
| H A D | test_visual.vim | 523 let [line1, col1] = searchpos('\u', 'bcnW') 525 call setpos("'<", [0, line1, col1, 0]) 562 let [line1, col1] = searchpos('\u', 'bcnW') 564 call setpos("'<", [0, line1, col1, 0])
|
| H A D | test_mapping.vim | 356 let [g:lnum1, g:col1] = searchpos('-', 'Wb') 367 call cursor([g:lnum1, g:col1])
|
| /vim-8.2.3635/runtime/doc/ |
| H A D | todo.txt | 3829 - Add COLUMN NUMBERS to ":" commands ":line1,line2[col1,col2]cmd". Block
|