Home
last modified time | relevance | path

Searched refs:motion_type (Results 1 – 11 of 11) sorted by relevance

/vim-8.2.3635/src/
H A Dos_macosx.m73 int motion_type = MAUTO;
89 motion_type = [[plist objectAtIndex:0] intValue];
123 if (!(MCHAR == motion_type || MLINE == motion_type || MBLOCK == motion_type
124 || MAUTO == motion_type))
125 motion_type = MAUTO;
134 clip_yank_selection(motion_type, str, len, cbd);
159 int motion_type = clip_convert_selection(&str, &llen, cbd);
160 if (motion_type < 0)
191 NSNumber *motion = [NSNumber numberWithInt:motion_type];
H A Dops.c654 oap->motion_type = MLINE; in op_delete()
1149 if (oap->motion_type == MLINE) in op_replace()
1282 if (oap->motion_type == MLINE) in op_tilde()
1701 if (oap->motion_type == MLINE) in op_change()
1743 if (oap->motion_type == MLINE) in op_change()
3511 oap->motion_type = MLINE; in do_pending_operator()
3521 oap->motion_type = MCHAR; in do_pending_operator()
3795 oap->motion_type = MLINE; in do_pending_operator()
3798 oap->motion_type = MCHAR; in do_pending_operator()
3888 if ( oap->motion_type == MCHAR in do_pending_operator()
[all …]
H A Dclipboard.c1408 int motion_type; in clip_x11_convert_selection_cb() local
1454 if (motion_type < 0) in clip_x11_convert_selection_cb()
1509 save_result[0] = motion_type; in clip_x11_convert_selection_cb()
1516 save_result[0] = motion_type; in clip_x11_convert_selection_cb()
1606 int motion_type = MAUTO; in clip_x11_request_selection_cb() local
1628 motion_type = *p++; in clip_x11_request_selection_cb()
1638 motion_type = *p++; in clip_x11_request_selection_cb()
1688 clip_yank_selection(motion_type, p, (long)len, cbd); in clip_x11_request_selection_cb()
1920 int motion_type = -1; in x11_export_final_selection() local
1935 motion_type = clip_convert_selection(&str, &len, &clip_plus); in x11_export_final_selection()
[all …]
H A Dnormal.c2543 oap->motion_type = MCHAR; in nv_screengo()
3917 cap->oap->motion_type = MLINE; in nv_scroll()
4196 cap->oap->motion_type = MLINE; in nv_up()
4837 cap->oap->motion_type = MCHAR; in nv_percent()
6021 oap->motion_type = MLINE; in nv_g_cmd()
6035 oap->motion_type = MLINE; in nv_g_cmd()
6063 oap->motion_type = MCHAR; in nv_g_cmd()
6099 oap->motion_type = MCHAR; in nv_g_cmd()
6116 cap->oap->motion_type = MCHAR; in nv_g_cmd()
6145 oap->motion_type = MCHAR; in nv_g_cmd()
[all …]
H A Dtextobject.c748 oap->motion_type = MCHAR; in current_word()
1023 oap->motion_type = MCHAR; in current_sent()
1174 oap->motion_type = MCHAR; in current_block()
1454 oap->motion_type = MCHAR; in current_tagblock()
1638 oap->motion_type = MLINE; in current_par()
1930 oap->motion_type = MCHAR; in current_quote()
H A Dgui_gtk_x11.c1236 int motion_type = MAUTO; in selection_received_cb() local
1256 motion_type = *text++; in selection_received_cb()
1264 motion_type = *text++; in selection_received_cb()
1325 clip_yank_selection(motion_type, text, (long)len, cbd); in selection_received_cb()
1346 int motion_type; in selection_get_cb() local
1371 motion_type = clip_convert_selection(&string, &tmplen, cbd); in selection_get_cb()
1372 if (motion_type < 0 || string == NULL) in selection_get_cb()
1384 tmpbuf[0] = motion_type; in selection_get_cb()
1443 tmpbuf[0] = motion_type; in selection_get_cb()
H A Dmouse.c669 oap->motion_type = MCHAR; in do_mouse()
966 oap->motion_type = MCHAR; in do_mouse()
974 if (oap->motion_type == MLINE) in do_mouse()
H A Dregister.c1138 int yanktype = oap->motion_type; in op_yank()
1176 if ( oap->motion_type == MCHAR in op_yank()
H A Dstructs.h3809 int motion_type; // type of the current cursor motion member
H A Dsearch.c2256 oap->motion_type = MLINE; // Linewise for this case only in findmatchlimit()
H A Dex_docmd.c7725 oa.motion_type = MLINE; in ex_operators()