1 /* vi:set ts=8 sts=4 sw=4 noet: 2 * 3 * VIM - Vi IMproved by Bram Moolenaar 4 * 5 * Do ":help uganda" in Vim to read copying and usage conditions. 6 * Do ":help credits" in Vim to see a list of people who contributed. 7 * See README.txt for an overview of the Vim source code. 8 */ 9 /* 10 * normal.c: Contains the main routine for processing characters in command 11 * mode. Communicates closely with the code in ops.c to handle 12 * the operators. 13 */ 14 15 #include "vim.h" 16 17 static int VIsual_mode_orig = NUL; // saved Visual mode 18 static int restart_VIsual_select = 0; 19 20 #ifdef FEAT_EVAL 21 static void set_vcount_ca(cmdarg_T *cap, int *set_prevcount); 22 #endif 23 static int nv_compare(const void *s1, const void *s2); 24 static void unshift_special(cmdarg_T *cap); 25 #ifdef FEAT_CMDL_INFO 26 static void del_from_showcmd(int); 27 #endif 28 29 /* 30 * nv_*(): functions called to handle Normal and Visual mode commands. 31 * n_*(): functions called to handle Normal mode commands. 32 * v_*(): functions called to handle Visual mode commands. 33 */ 34 static void nv_ignore(cmdarg_T *cap); 35 static void nv_nop(cmdarg_T *cap); 36 static void nv_error(cmdarg_T *cap); 37 static void nv_help(cmdarg_T *cap); 38 static void nv_addsub(cmdarg_T *cap); 39 static void nv_page(cmdarg_T *cap); 40 static void nv_zet(cmdarg_T *cap); 41 #ifdef FEAT_GUI 42 static void nv_ver_scrollbar(cmdarg_T *cap); 43 static void nv_hor_scrollbar(cmdarg_T *cap); 44 #endif 45 #ifdef FEAT_GUI_TABLINE 46 static void nv_tabline(cmdarg_T *cap); 47 static void nv_tabmenu(cmdarg_T *cap); 48 #endif 49 static void nv_exmode(cmdarg_T *cap); 50 static void nv_colon(cmdarg_T *cap); 51 static void nv_ctrlg(cmdarg_T *cap); 52 static void nv_ctrlh(cmdarg_T *cap); 53 static void nv_clear(cmdarg_T *cap); 54 static void nv_ctrlo(cmdarg_T *cap); 55 static void nv_hat(cmdarg_T *cap); 56 static void nv_Zet(cmdarg_T *cap); 57 static void nv_ident(cmdarg_T *cap); 58 static void nv_tagpop(cmdarg_T *cap); 59 static void nv_scroll(cmdarg_T *cap); 60 static void nv_right(cmdarg_T *cap); 61 static void nv_left(cmdarg_T *cap); 62 static void nv_up(cmdarg_T *cap); 63 static void nv_down(cmdarg_T *cap); 64 static void nv_end(cmdarg_T *cap); 65 static void nv_dollar(cmdarg_T *cap); 66 static void nv_search(cmdarg_T *cap); 67 static void nv_next(cmdarg_T *cap); 68 static int normal_search(cmdarg_T *cap, int dir, char_u *pat, int opt, int *wrapped); 69 static void nv_csearch(cmdarg_T *cap); 70 static void nv_brackets(cmdarg_T *cap); 71 static void nv_percent(cmdarg_T *cap); 72 static void nv_brace(cmdarg_T *cap); 73 static void nv_mark(cmdarg_T *cap); 74 static void nv_findpar(cmdarg_T *cap); 75 static void nv_undo(cmdarg_T *cap); 76 static void nv_kundo(cmdarg_T *cap); 77 static void nv_Replace(cmdarg_T *cap); 78 static void nv_replace(cmdarg_T *cap); 79 static void nv_cursormark(cmdarg_T *cap, int flag, pos_T *pos); 80 static void v_visop(cmdarg_T *cap); 81 static void nv_subst(cmdarg_T *cap); 82 static void nv_abbrev(cmdarg_T *cap); 83 static void nv_optrans(cmdarg_T *cap); 84 static void nv_gomark(cmdarg_T *cap); 85 static void nv_pcmark(cmdarg_T *cap); 86 static void nv_regname(cmdarg_T *cap); 87 static void nv_visual(cmdarg_T *cap); 88 static void n_start_visual_mode(int c); 89 static void nv_window(cmdarg_T *cap); 90 static void nv_suspend(cmdarg_T *cap); 91 static void nv_g_cmd(cmdarg_T *cap); 92 static void nv_dot(cmdarg_T *cap); 93 static void nv_redo(cmdarg_T *cap); 94 static void nv_Undo(cmdarg_T *cap); 95 static void nv_tilde(cmdarg_T *cap); 96 static void nv_operator(cmdarg_T *cap); 97 #ifdef FEAT_EVAL 98 static void set_op_var(int optype); 99 #endif 100 static void nv_lineop(cmdarg_T *cap); 101 static void nv_home(cmdarg_T *cap); 102 static void nv_pipe(cmdarg_T *cap); 103 static void nv_bck_word(cmdarg_T *cap); 104 static void nv_wordcmd(cmdarg_T *cap); 105 static void nv_beginline(cmdarg_T *cap); 106 static void adjust_cursor(oparg_T *oap); 107 static void adjust_for_sel(cmdarg_T *cap); 108 static void nv_select(cmdarg_T *cap); 109 static void nv_goto(cmdarg_T *cap); 110 static void nv_normal(cmdarg_T *cap); 111 static void nv_esc(cmdarg_T *oap); 112 static void nv_edit(cmdarg_T *cap); 113 static void invoke_edit(cmdarg_T *cap, int repl, int cmd, int startln); 114 #ifdef FEAT_TEXTOBJ 115 static void nv_object(cmdarg_T *cap); 116 #endif 117 static void nv_record(cmdarg_T *cap); 118 static void nv_at(cmdarg_T *cap); 119 static void nv_halfpage(cmdarg_T *cap); 120 static void nv_join(cmdarg_T *cap); 121 static void nv_put(cmdarg_T *cap); 122 static void nv_put_opt(cmdarg_T *cap, int fix_indent); 123 static void nv_open(cmdarg_T *cap); 124 #ifdef FEAT_NETBEANS_INTG 125 static void nv_nbcmd(cmdarg_T *cap); 126 #endif 127 #ifdef FEAT_DND 128 static void nv_drop(cmdarg_T *cap); 129 #endif 130 static void nv_cursorhold(cmdarg_T *cap); 131 132 static char *e_noident = N_("E349: No identifier under cursor"); 133 134 /* 135 * Function to be called for a Normal or Visual mode command. 136 * The argument is a cmdarg_T. 137 */ 138 typedef void (*nv_func_T)(cmdarg_T *cap); 139 140 // Values for cmd_flags. 141 #define NV_NCH 0x01 // may need to get a second char 142 #define NV_NCH_NOP (0x02|NV_NCH) // get second char when no operator pending 143 #define NV_NCH_ALW (0x04|NV_NCH) // always get a second char 144 #define NV_LANG 0x08 // second char needs language adjustment 145 146 #define NV_SS 0x10 // may start selection 147 #define NV_SSS 0x20 // may start selection with shift modifier 148 #define NV_STS 0x40 // may stop selection without shift modif. 149 #define NV_RL 0x80 // 'rightleft' modifies command 150 #define NV_KEEPREG 0x100 // don't clear regname 151 #define NV_NCW 0x200 // not allowed in command-line window 152 153 /* 154 * Generally speaking, every Normal mode command should either clear any 155 * pending operator (with *clearop*()), or set the motion type variable 156 * oap->motion_type. 157 * 158 * When a cursor motion command is made, it is marked as being a character or 159 * line oriented motion. Then, if an operator is in effect, the operation 160 * becomes character or line oriented accordingly. 161 */ 162 163 /* 164 * This table contains one entry for every Normal or Visual mode command. 165 * The order doesn't matter, init_normal_cmds() will create a sorted index. 166 * It is faster when all keys from zero to '~' are present. 167 */ 168 static const struct nv_cmd 169 { 170 int cmd_char; // (first) command character 171 nv_func_T cmd_func; // function for this command 172 short_u cmd_flags; // NV_ flags 173 short cmd_arg; // value for ca.arg 174 } nv_cmds[] = 175 { 176 {NUL, nv_error, 0, 0}, 177 {Ctrl_A, nv_addsub, 0, 0}, 178 {Ctrl_B, nv_page, NV_STS, BACKWARD}, 179 {Ctrl_C, nv_esc, 0, TRUE}, 180 {Ctrl_D, nv_halfpage, 0, 0}, 181 {Ctrl_E, nv_scroll_line, 0, TRUE}, 182 {Ctrl_F, nv_page, NV_STS, FORWARD}, 183 {Ctrl_G, nv_ctrlg, 0, 0}, 184 {Ctrl_H, nv_ctrlh, 0, 0}, 185 {Ctrl_I, nv_pcmark, 0, 0}, 186 {NL, nv_down, 0, FALSE}, 187 {Ctrl_K, nv_error, 0, 0}, 188 {Ctrl_L, nv_clear, 0, 0}, 189 {CAR, nv_down, 0, TRUE}, 190 {Ctrl_N, nv_down, NV_STS, FALSE}, 191 {Ctrl_O, nv_ctrlo, 0, 0}, 192 {Ctrl_P, nv_up, NV_STS, FALSE}, 193 {Ctrl_Q, nv_visual, 0, FALSE}, 194 {Ctrl_R, nv_redo, 0, 0}, 195 {Ctrl_S, nv_ignore, 0, 0}, 196 {Ctrl_T, nv_tagpop, NV_NCW, 0}, 197 {Ctrl_U, nv_halfpage, 0, 0}, 198 {Ctrl_V, nv_visual, 0, FALSE}, 199 {'V', nv_visual, 0, FALSE}, 200 {'v', nv_visual, 0, FALSE}, 201 {Ctrl_W, nv_window, 0, 0}, 202 {Ctrl_X, nv_addsub, 0, 0}, 203 {Ctrl_Y, nv_scroll_line, 0, FALSE}, 204 {Ctrl_Z, nv_suspend, 0, 0}, 205 {ESC, nv_esc, 0, FALSE}, 206 {Ctrl_BSL, nv_normal, NV_NCH_ALW, 0}, 207 {Ctrl_RSB, nv_ident, NV_NCW, 0}, 208 {Ctrl_HAT, nv_hat, NV_NCW, 0}, 209 {Ctrl__, nv_error, 0, 0}, 210 {' ', nv_right, 0, 0}, 211 {'!', nv_operator, 0, 0}, 212 {'"', nv_regname, NV_NCH_NOP|NV_KEEPREG, 0}, 213 {'#', nv_ident, 0, 0}, 214 {'$', nv_dollar, 0, 0}, 215 {'%', nv_percent, 0, 0}, 216 {'&', nv_optrans, 0, 0}, 217 {'\'', nv_gomark, NV_NCH_ALW, TRUE}, 218 {'(', nv_brace, 0, BACKWARD}, 219 {')', nv_brace, 0, FORWARD}, 220 {'*', nv_ident, 0, 0}, 221 {'+', nv_down, 0, TRUE}, 222 {',', nv_csearch, 0, TRUE}, 223 {'-', nv_up, 0, TRUE}, 224 {'.', nv_dot, NV_KEEPREG, 0}, 225 {'/', nv_search, 0, FALSE}, 226 {'0', nv_beginline, 0, 0}, 227 {'1', nv_ignore, 0, 0}, 228 {'2', nv_ignore, 0, 0}, 229 {'3', nv_ignore, 0, 0}, 230 {'4', nv_ignore, 0, 0}, 231 {'5', nv_ignore, 0, 0}, 232 {'6', nv_ignore, 0, 0}, 233 {'7', nv_ignore, 0, 0}, 234 {'8', nv_ignore, 0, 0}, 235 {'9', nv_ignore, 0, 0}, 236 {':', nv_colon, 0, 0}, 237 {';', nv_csearch, 0, FALSE}, 238 {'<', nv_operator, NV_RL, 0}, 239 {'=', nv_operator, 0, 0}, 240 {'>', nv_operator, NV_RL, 0}, 241 {'?', nv_search, 0, FALSE}, 242 {'@', nv_at, NV_NCH_NOP, FALSE}, 243 {'A', nv_edit, 0, 0}, 244 {'B', nv_bck_word, 0, 1}, 245 {'C', nv_abbrev, NV_KEEPREG, 0}, 246 {'D', nv_abbrev, NV_KEEPREG, 0}, 247 {'E', nv_wordcmd, 0, TRUE}, 248 {'F', nv_csearch, NV_NCH_ALW|NV_LANG, BACKWARD}, 249 {'G', nv_goto, 0, TRUE}, 250 {'H', nv_scroll, 0, 0}, 251 {'I', nv_edit, 0, 0}, 252 {'J', nv_join, 0, 0}, 253 {'K', nv_ident, 0, 0}, 254 {'L', nv_scroll, 0, 0}, 255 {'M', nv_scroll, 0, 0}, 256 {'N', nv_next, 0, SEARCH_REV}, 257 {'O', nv_open, 0, 0}, 258 {'P', nv_put, 0, 0}, 259 {'Q', nv_exmode, NV_NCW, 0}, 260 {'R', nv_Replace, 0, FALSE}, 261 {'S', nv_subst, NV_KEEPREG, 0}, 262 {'T', nv_csearch, NV_NCH_ALW|NV_LANG, BACKWARD}, 263 {'U', nv_Undo, 0, 0}, 264 {'W', nv_wordcmd, 0, TRUE}, 265 {'X', nv_abbrev, NV_KEEPREG, 0}, 266 {'Y', nv_abbrev, NV_KEEPREG, 0}, 267 {'Z', nv_Zet, NV_NCH_NOP|NV_NCW, 0}, 268 {'[', nv_brackets, NV_NCH_ALW, BACKWARD}, 269 {'\\', nv_error, 0, 0}, 270 {']', nv_brackets, NV_NCH_ALW, FORWARD}, 271 {'^', nv_beginline, 0, BL_WHITE | BL_FIX}, 272 {'_', nv_lineop, 0, 0}, 273 {'`', nv_gomark, NV_NCH_ALW, FALSE}, 274 {'a', nv_edit, NV_NCH, 0}, 275 {'b', nv_bck_word, 0, 0}, 276 {'c', nv_operator, 0, 0}, 277 {'d', nv_operator, 0, 0}, 278 {'e', nv_wordcmd, 0, FALSE}, 279 {'f', nv_csearch, NV_NCH_ALW|NV_LANG, FORWARD}, 280 {'g', nv_g_cmd, NV_NCH_ALW, FALSE}, 281 {'h', nv_left, NV_RL, 0}, 282 {'i', nv_edit, NV_NCH, 0}, 283 {'j', nv_down, 0, FALSE}, 284 {'k', nv_up, 0, FALSE}, 285 {'l', nv_right, NV_RL, 0}, 286 {'m', nv_mark, NV_NCH_NOP, 0}, 287 {'n', nv_next, 0, 0}, 288 {'o', nv_open, 0, 0}, 289 {'p', nv_put, 0, 0}, 290 {'q', nv_record, NV_NCH, 0}, 291 {'r', nv_replace, NV_NCH_NOP|NV_LANG, 0}, 292 {'s', nv_subst, NV_KEEPREG, 0}, 293 {'t', nv_csearch, NV_NCH_ALW|NV_LANG, FORWARD}, 294 {'u', nv_undo, 0, 0}, 295 {'w', nv_wordcmd, 0, FALSE}, 296 {'x', nv_abbrev, NV_KEEPREG, 0}, 297 {'y', nv_operator, 0, 0}, 298 {'z', nv_zet, NV_NCH_ALW, 0}, 299 {'{', nv_findpar, 0, BACKWARD}, 300 {'|', nv_pipe, 0, 0}, 301 {'}', nv_findpar, 0, FORWARD}, 302 {'~', nv_tilde, 0, 0}, 303 304 // pound sign 305 {POUND, nv_ident, 0, 0}, 306 {K_MOUSEUP, nv_mousescroll, 0, MSCR_UP}, 307 {K_MOUSEDOWN, nv_mousescroll, 0, MSCR_DOWN}, 308 {K_MOUSELEFT, nv_mousescroll, 0, MSCR_LEFT}, 309 {K_MOUSERIGHT, nv_mousescroll, 0, MSCR_RIGHT}, 310 {K_LEFTMOUSE, nv_mouse, 0, 0}, 311 {K_LEFTMOUSE_NM, nv_mouse, 0, 0}, 312 {K_LEFTDRAG, nv_mouse, 0, 0}, 313 {K_LEFTRELEASE, nv_mouse, 0, 0}, 314 {K_LEFTRELEASE_NM, nv_mouse, 0, 0}, 315 {K_MOUSEMOVE, nv_mouse, 0, 0}, 316 {K_MIDDLEMOUSE, nv_mouse, 0, 0}, 317 {K_MIDDLEDRAG, nv_mouse, 0, 0}, 318 {K_MIDDLERELEASE, nv_mouse, 0, 0}, 319 {K_RIGHTMOUSE, nv_mouse, 0, 0}, 320 {K_RIGHTDRAG, nv_mouse, 0, 0}, 321 {K_RIGHTRELEASE, nv_mouse, 0, 0}, 322 {K_X1MOUSE, nv_mouse, 0, 0}, 323 {K_X1DRAG, nv_mouse, 0, 0}, 324 {K_X1RELEASE, nv_mouse, 0, 0}, 325 {K_X2MOUSE, nv_mouse, 0, 0}, 326 {K_X2DRAG, nv_mouse, 0, 0}, 327 {K_X2RELEASE, nv_mouse, 0, 0}, 328 {K_IGNORE, nv_ignore, NV_KEEPREG, 0}, 329 {K_NOP, nv_nop, 0, 0}, 330 {K_INS, nv_edit, 0, 0}, 331 {K_KINS, nv_edit, 0, 0}, 332 {K_BS, nv_ctrlh, 0, 0}, 333 {K_UP, nv_up, NV_SSS|NV_STS, FALSE}, 334 {K_S_UP, nv_page, NV_SS, BACKWARD}, 335 {K_DOWN, nv_down, NV_SSS|NV_STS, FALSE}, 336 {K_S_DOWN, nv_page, NV_SS, FORWARD}, 337 {K_LEFT, nv_left, NV_SSS|NV_STS|NV_RL, 0}, 338 {K_S_LEFT, nv_bck_word, NV_SS|NV_RL, 0}, 339 {K_C_LEFT, nv_bck_word, NV_SSS|NV_RL|NV_STS, 1}, 340 {K_RIGHT, nv_right, NV_SSS|NV_STS|NV_RL, 0}, 341 {K_S_RIGHT, nv_wordcmd, NV_SS|NV_RL, FALSE}, 342 {K_C_RIGHT, nv_wordcmd, NV_SSS|NV_RL|NV_STS, TRUE}, 343 {K_PAGEUP, nv_page, NV_SSS|NV_STS, BACKWARD}, 344 {K_KPAGEUP, nv_page, NV_SSS|NV_STS, BACKWARD}, 345 {K_PAGEDOWN, nv_page, NV_SSS|NV_STS, FORWARD}, 346 {K_KPAGEDOWN, nv_page, NV_SSS|NV_STS, FORWARD}, 347 {K_END, nv_end, NV_SSS|NV_STS, FALSE}, 348 {K_KEND, nv_end, NV_SSS|NV_STS, FALSE}, 349 {K_S_END, nv_end, NV_SS, FALSE}, 350 {K_C_END, nv_end, NV_SSS|NV_STS, TRUE}, 351 {K_HOME, nv_home, NV_SSS|NV_STS, 0}, 352 {K_KHOME, nv_home, NV_SSS|NV_STS, 0}, 353 {K_S_HOME, nv_home, NV_SS, 0}, 354 {K_C_HOME, nv_goto, NV_SSS|NV_STS, FALSE}, 355 {K_DEL, nv_abbrev, 0, 0}, 356 {K_KDEL, nv_abbrev, 0, 0}, 357 {K_UNDO, nv_kundo, 0, 0}, 358 {K_HELP, nv_help, NV_NCW, 0}, 359 {K_F1, nv_help, NV_NCW, 0}, 360 {K_XF1, nv_help, NV_NCW, 0}, 361 {K_SELECT, nv_select, 0, 0}, 362 #ifdef FEAT_GUI 363 {K_VER_SCROLLBAR, nv_ver_scrollbar, 0, 0}, 364 {K_HOR_SCROLLBAR, nv_hor_scrollbar, 0, 0}, 365 #endif 366 #ifdef FEAT_GUI_TABLINE 367 {K_TABLINE, nv_tabline, 0, 0}, 368 {K_TABMENU, nv_tabmenu, 0, 0}, 369 #endif 370 #ifdef FEAT_NETBEANS_INTG 371 {K_F21, nv_nbcmd, NV_NCH_ALW, 0}, 372 #endif 373 #ifdef FEAT_DND 374 {K_DROP, nv_drop, NV_STS, 0}, 375 #endif 376 {K_CURSORHOLD, nv_cursorhold, NV_KEEPREG, 0}, 377 {K_PS, nv_edit, 0, 0}, 378 }; 379 380 // Number of commands in nv_cmds[]. 381 #define NV_CMDS_SIZE (sizeof(nv_cmds) / sizeof(struct nv_cmd)) 382 383 // Sorted index of commands in nv_cmds[]. 384 static short nv_cmd_idx[NV_CMDS_SIZE]; 385 386 // The highest index for which 387 // nv_cmds[idx].cmd_char == nv_cmd_idx[nv_cmds[idx].cmd_char] 388 static int nv_max_linear; 389 390 /* 391 * Compare functions for qsort() below, that checks the command character 392 * through the index in nv_cmd_idx[]. 393 */ 394 static int 395 nv_compare(const void *s1, const void *s2) 396 { 397 int c1, c2; 398 399 // The commands are sorted on absolute value. 400 c1 = nv_cmds[*(const short *)s1].cmd_char; 401 c2 = nv_cmds[*(const short *)s2].cmd_char; 402 if (c1 < 0) 403 c1 = -c1; 404 if (c2 < 0) 405 c2 = -c2; 406 return c1 - c2; 407 } 408 409 /* 410 * Initialize the nv_cmd_idx[] table. 411 */ 412 void 413 init_normal_cmds(void) 414 { 415 int i; 416 417 // Fill the index table with a one to one relation. 418 for (i = 0; i < (int)NV_CMDS_SIZE; ++i) 419 nv_cmd_idx[i] = i; 420 421 // Sort the commands by the command character. 422 qsort((void *)&nv_cmd_idx, (size_t)NV_CMDS_SIZE, sizeof(short), nv_compare); 423 424 // Find the first entry that can't be indexed by the command character. 425 for (i = 0; i < (int)NV_CMDS_SIZE; ++i) 426 if (i != nv_cmds[nv_cmd_idx[i]].cmd_char) 427 break; 428 nv_max_linear = i - 1; 429 } 430 431 /* 432 * Search for a command in the commands table. 433 * Returns -1 for invalid command. 434 */ 435 static int 436 find_command(int cmdchar) 437 { 438 int i; 439 int idx; 440 int top, bot; 441 int c; 442 443 // A multi-byte character is never a command. 444 if (cmdchar >= 0x100) 445 return -1; 446 447 // We use the absolute value of the character. Special keys have a 448 // negative value, but are sorted on their absolute value. 449 if (cmdchar < 0) 450 cmdchar = -cmdchar; 451 452 // If the character is in the first part: The character is the index into 453 // nv_cmd_idx[]. 454 if (cmdchar <= nv_max_linear) 455 return nv_cmd_idx[cmdchar]; 456 457 // Perform a binary search. 458 bot = nv_max_linear + 1; 459 top = NV_CMDS_SIZE - 1; 460 idx = -1; 461 while (bot <= top) 462 { 463 i = (top + bot) / 2; 464 c = nv_cmds[nv_cmd_idx[i]].cmd_char; 465 if (c < 0) 466 c = -c; 467 if (cmdchar == c) 468 { 469 idx = nv_cmd_idx[i]; 470 break; 471 } 472 if (cmdchar > c) 473 bot = i + 1; 474 else 475 top = i - 1; 476 } 477 return idx; 478 } 479 480 /* 481 * Execute a command in Normal mode. 482 */ 483 void 484 normal_cmd( 485 oparg_T *oap, 486 int toplevel UNUSED) // TRUE when called from main() 487 { 488 cmdarg_T ca; // command arguments 489 int c; 490 int ctrl_w = FALSE; // got CTRL-W command 491 int old_col = curwin->w_curswant; 492 #ifdef FEAT_CMDL_INFO 493 int need_flushbuf; // need to call out_flush() 494 #endif 495 pos_T old_pos; // cursor position before command 496 int mapped_len; 497 static int old_mapped_len = 0; 498 int idx; 499 #ifdef FEAT_EVAL 500 int set_prevcount = FALSE; 501 #endif 502 503 CLEAR_FIELD(ca); // also resets ca.retval 504 ca.oap = oap; 505 506 // Use a count remembered from before entering an operator. After typing 507 // "3d" we return from normal_cmd() and come back here, the "3" is 508 // remembered in "opcount". 509 ca.opcount = opcount; 510 511 /* 512 * If there is an operator pending, then the command we take this time 513 * will terminate it. Finish_op tells us to finish the operation before 514 * returning this time (unless the operation was cancelled). 515 */ 516 #ifdef CURSOR_SHAPE 517 c = finish_op; 518 #endif 519 finish_op = (oap->op_type != OP_NOP); 520 #ifdef CURSOR_SHAPE 521 if (finish_op != c) 522 { 523 ui_cursor_shape(); // may show different cursor shape 524 # ifdef FEAT_MOUSESHAPE 525 update_mouseshape(-1); 526 # endif 527 } 528 #endif 529 530 // When not finishing an operator and no register name typed, reset the 531 // count. 532 if (!finish_op && !oap->regname) 533 { 534 ca.opcount = 0; 535 #ifdef FEAT_EVAL 536 set_prevcount = TRUE; 537 #endif 538 } 539 540 // Restore counts from before receiving K_CURSORHOLD. This means after 541 // typing "3", handling K_CURSORHOLD and then typing "2" we get "32", not 542 // "3 * 2". 543 if (oap->prev_opcount > 0 || oap->prev_count0 > 0) 544 { 545 ca.opcount = oap->prev_opcount; 546 ca.count0 = oap->prev_count0; 547 oap->prev_opcount = 0; 548 oap->prev_count0 = 0; 549 } 550 551 mapped_len = typebuf_maplen(); 552 553 State = NORMAL_BUSY; 554 #ifdef USE_ON_FLY_SCROLL 555 dont_scroll = FALSE; // allow scrolling here 556 #endif 557 558 #ifdef FEAT_EVAL 559 // Set v:count here, when called from main() and not a stuffed 560 // command, so that v:count can be used in an expression mapping 561 // when there is no count. Do set it for redo. 562 if (toplevel && readbuf1_empty()) 563 set_vcount_ca(&ca, &set_prevcount); 564 #endif 565 566 /* 567 * Get the command character from the user. 568 */ 569 c = safe_vgetc(); 570 LANGMAP_ADJUST(c, get_real_state() != SELECTMODE); 571 572 /* 573 * If a mapping was started in Visual or Select mode, remember the length 574 * of the mapping. This is used below to not return to Insert mode for as 575 * long as the mapping is being executed. 576 */ 577 if (restart_edit == 0) 578 old_mapped_len = 0; 579 else if (old_mapped_len 580 || (VIsual_active && mapped_len == 0 && typebuf_maplen() > 0)) 581 old_mapped_len = typebuf_maplen(); 582 583 if (c == NUL) 584 c = K_ZERO; 585 586 /* 587 * In Select mode, typed text replaces the selection. 588 */ 589 if (VIsual_active 590 && VIsual_select 591 && (vim_isprintc(c) || c == NL || c == CAR || c == K_KENTER)) 592 { 593 // Fake a "c"hange command. When "restart_edit" is set (e.g., because 594 // 'insertmode' is set) fake a "d"elete command, Insert mode will 595 // restart automatically. 596 // Insert the typed character in the typeahead buffer, so that it can 597 // be mapped in Insert mode. Required for ":lmap" to work. 598 ins_char_typebuf(vgetc_char, vgetc_mod_mask); 599 if (restart_edit != 0) 600 c = 'd'; 601 else 602 c = 'c'; 603 msg_nowait = TRUE; // don't delay going to insert mode 604 old_mapped_len = 0; // do go to Insert mode 605 } 606 607 #ifdef FEAT_CMDL_INFO 608 need_flushbuf = add_to_showcmd(c); 609 #endif 610 611 getcount: 612 if (!(VIsual_active && VIsual_select)) 613 { 614 /* 615 * Handle a count before a command and compute ca.count0. 616 * Note that '0' is a command and not the start of a count, but it's 617 * part of a count after other digits. 618 */ 619 while ( (c >= '1' && c <= '9') 620 || (ca.count0 != 0 && (c == K_DEL || c == K_KDEL || c == '0'))) 621 { 622 if (c == K_DEL || c == K_KDEL) 623 { 624 ca.count0 /= 10; 625 #ifdef FEAT_CMDL_INFO 626 del_from_showcmd(4); // delete the digit and ~@% 627 #endif 628 } 629 else 630 ca.count0 = ca.count0 * 10 + (c - '0'); 631 if (ca.count0 < 0) // got too large! 632 ca.count0 = 999999999L; 633 #ifdef FEAT_EVAL 634 // Set v:count here, when called from main() and not a stuffed 635 // command, so that v:count can be used in an expression mapping 636 // right after the count. Do set it for redo. 637 if (toplevel && readbuf1_empty()) 638 set_vcount_ca(&ca, &set_prevcount); 639 #endif 640 if (ctrl_w) 641 { 642 ++no_mapping; 643 ++allow_keys; // no mapping for nchar, but keys 644 } 645 ++no_zero_mapping; // don't map zero here 646 c = plain_vgetc(); 647 LANGMAP_ADJUST(c, TRUE); 648 --no_zero_mapping; 649 if (ctrl_w) 650 { 651 --no_mapping; 652 --allow_keys; 653 } 654 #ifdef FEAT_CMDL_INFO 655 need_flushbuf |= add_to_showcmd(c); 656 #endif 657 } 658 659 /* 660 * If we got CTRL-W there may be a/another count 661 */ 662 if (c == Ctrl_W && !ctrl_w && oap->op_type == OP_NOP) 663 { 664 ctrl_w = TRUE; 665 ca.opcount = ca.count0; // remember first count 666 ca.count0 = 0; 667 ++no_mapping; 668 ++allow_keys; // no mapping for nchar, but keys 669 c = plain_vgetc(); // get next character 670 LANGMAP_ADJUST(c, TRUE); 671 --no_mapping; 672 --allow_keys; 673 #ifdef FEAT_CMDL_INFO 674 need_flushbuf |= add_to_showcmd(c); 675 #endif 676 goto getcount; // jump back 677 } 678 } 679 680 if (c == K_CURSORHOLD) 681 { 682 // Save the count values so that ca.opcount and ca.count0 are exactly 683 // the same when coming back here after handling K_CURSORHOLD. 684 oap->prev_opcount = ca.opcount; 685 oap->prev_count0 = ca.count0; 686 } 687 else if (ca.opcount != 0) 688 { 689 /* 690 * If we're in the middle of an operator (including after entering a 691 * yank buffer with '"') AND we had a count before the operator, then 692 * that count overrides the current value of ca.count0. 693 * What this means effectively, is that commands like "3dw" get turned 694 * into "d3w" which makes things fall into place pretty neatly. 695 * If you give a count before AND after the operator, they are 696 * multiplied. 697 */ 698 if (ca.count0) 699 ca.count0 *= ca.opcount; 700 else 701 ca.count0 = ca.opcount; 702 } 703 704 /* 705 * Always remember the count. It will be set to zero (on the next call, 706 * above) when there is no pending operator. 707 * When called from main(), save the count for use by the "count" built-in 708 * variable. 709 */ 710 ca.opcount = ca.count0; 711 ca.count1 = (ca.count0 == 0 ? 1 : ca.count0); 712 713 #ifdef FEAT_EVAL 714 /* 715 * Only set v:count when called from main() and not a stuffed command. 716 * Do set it for redo. 717 */ 718 if (toplevel && readbuf1_empty()) 719 set_vcount(ca.count0, ca.count1, set_prevcount); 720 #endif 721 722 /* 723 * Find the command character in the table of commands. 724 * For CTRL-W we already got nchar when looking for a count. 725 */ 726 if (ctrl_w) 727 { 728 ca.nchar = c; 729 ca.cmdchar = Ctrl_W; 730 } 731 else 732 ca.cmdchar = c; 733 idx = find_command(ca.cmdchar); 734 if (idx < 0) 735 { 736 // Not a known command: beep. 737 clearopbeep(oap); 738 goto normal_end; 739 } 740 741 if (text_locked() && (nv_cmds[idx].cmd_flags & NV_NCW)) 742 { 743 // This command is not allowed while editing a cmdline: beep. 744 clearopbeep(oap); 745 text_locked_msg(); 746 goto normal_end; 747 } 748 if ((nv_cmds[idx].cmd_flags & NV_NCW) && curbuf_locked()) 749 goto normal_end; 750 751 /* 752 * In Visual/Select mode, a few keys are handled in a special way. 753 */ 754 if (VIsual_active) 755 { 756 // when 'keymodel' contains "stopsel" may stop Select/Visual mode 757 if (km_stopsel 758 && (nv_cmds[idx].cmd_flags & NV_STS) 759 && !(mod_mask & MOD_MASK_SHIFT)) 760 { 761 end_visual_mode(); 762 redraw_curbuf_later(INVERTED); 763 } 764 765 // Keys that work different when 'keymodel' contains "startsel" 766 if (km_startsel) 767 { 768 if (nv_cmds[idx].cmd_flags & NV_SS) 769 { 770 unshift_special(&ca); 771 idx = find_command(ca.cmdchar); 772 if (idx < 0) 773 { 774 // Just in case 775 clearopbeep(oap); 776 goto normal_end; 777 } 778 } 779 else if ((nv_cmds[idx].cmd_flags & NV_SSS) 780 && (mod_mask & MOD_MASK_SHIFT)) 781 mod_mask &= ~MOD_MASK_SHIFT; 782 } 783 } 784 785 #ifdef FEAT_RIGHTLEFT 786 if (curwin->w_p_rl && KeyTyped && !KeyStuffed 787 && (nv_cmds[idx].cmd_flags & NV_RL)) 788 { 789 // Invert horizontal movements and operations. Only when typed by the 790 // user directly, not when the result of a mapping or "x" translated 791 // to "dl". 792 switch (ca.cmdchar) 793 { 794 case 'l': ca.cmdchar = 'h'; break; 795 case K_RIGHT: ca.cmdchar = K_LEFT; break; 796 case K_S_RIGHT: ca.cmdchar = K_S_LEFT; break; 797 case K_C_RIGHT: ca.cmdchar = K_C_LEFT; break; 798 case 'h': ca.cmdchar = 'l'; break; 799 case K_LEFT: ca.cmdchar = K_RIGHT; break; 800 case K_S_LEFT: ca.cmdchar = K_S_RIGHT; break; 801 case K_C_LEFT: ca.cmdchar = K_C_RIGHT; break; 802 case '>': ca.cmdchar = '<'; break; 803 case '<': ca.cmdchar = '>'; break; 804 } 805 idx = find_command(ca.cmdchar); 806 } 807 #endif 808 809 /* 810 * Get an additional character if we need one. 811 */ 812 if ((nv_cmds[idx].cmd_flags & NV_NCH) 813 && (((nv_cmds[idx].cmd_flags & NV_NCH_NOP) == NV_NCH_NOP 814 && oap->op_type == OP_NOP) 815 || (nv_cmds[idx].cmd_flags & NV_NCH_ALW) == NV_NCH_ALW 816 || (ca.cmdchar == 'q' 817 && oap->op_type == OP_NOP 818 && reg_recording == 0 819 && reg_executing == 0) 820 || ((ca.cmdchar == 'a' || ca.cmdchar == 'i') 821 && (oap->op_type != OP_NOP || VIsual_active)))) 822 { 823 int *cp; 824 int repl = FALSE; // get character for replace mode 825 int lit = FALSE; // get extra character literally 826 int langmap_active = FALSE; // using :lmap mappings 827 int lang; // getting a text character 828 #ifdef HAVE_INPUT_METHOD 829 int save_smd; // saved value of p_smd 830 #endif 831 832 ++no_mapping; 833 ++allow_keys; // no mapping for nchar, but allow key codes 834 // Don't generate a CursorHold event here, most commands can't handle 835 // it, e.g., nv_replace(), nv_csearch(). 836 did_cursorhold = TRUE; 837 if (ca.cmdchar == 'g') 838 { 839 /* 840 * For 'g' get the next character now, so that we can check for 841 * "gr", "g'" and "g`". 842 */ 843 ca.nchar = plain_vgetc(); 844 LANGMAP_ADJUST(ca.nchar, TRUE); 845 #ifdef FEAT_CMDL_INFO 846 need_flushbuf |= add_to_showcmd(ca.nchar); 847 #endif 848 if (ca.nchar == 'r' || ca.nchar == '\'' || ca.nchar == '`' 849 || ca.nchar == Ctrl_BSL) 850 { 851 cp = &ca.extra_char; // need to get a third character 852 if (ca.nchar != 'r') 853 lit = TRUE; // get it literally 854 else 855 repl = TRUE; // get it in replace mode 856 } 857 else 858 cp = NULL; // no third character needed 859 } 860 else 861 { 862 if (ca.cmdchar == 'r') // get it in replace mode 863 repl = TRUE; 864 cp = &ca.nchar; 865 } 866 lang = (repl || (nv_cmds[idx].cmd_flags & NV_LANG)); 867 868 /* 869 * Get a second or third character. 870 */ 871 if (cp != NULL) 872 { 873 if (repl) 874 { 875 State = REPLACE; // pretend Replace mode 876 #ifdef CURSOR_SHAPE 877 ui_cursor_shape(); // show different cursor shape 878 #endif 879 } 880 if (lang && curbuf->b_p_iminsert == B_IMODE_LMAP) 881 { 882 // Allow mappings defined with ":lmap". 883 --no_mapping; 884 --allow_keys; 885 if (repl) 886 State = LREPLACE; 887 else 888 State = LANGMAP; 889 langmap_active = TRUE; 890 } 891 #ifdef HAVE_INPUT_METHOD 892 save_smd = p_smd; 893 p_smd = FALSE; // Don't let the IM code show the mode here 894 if (lang && curbuf->b_p_iminsert == B_IMODE_IM) 895 im_set_active(TRUE); 896 #endif 897 898 *cp = plain_vgetc(); 899 900 if (langmap_active) 901 { 902 // Undo the decrement done above 903 ++no_mapping; 904 ++allow_keys; 905 State = NORMAL_BUSY; 906 } 907 #ifdef HAVE_INPUT_METHOD 908 if (lang) 909 { 910 if (curbuf->b_p_iminsert != B_IMODE_LMAP) 911 im_save_status(&curbuf->b_p_iminsert); 912 im_set_active(FALSE); 913 } 914 p_smd = save_smd; 915 #endif 916 State = NORMAL_BUSY; 917 #ifdef FEAT_CMDL_INFO 918 need_flushbuf |= add_to_showcmd(*cp); 919 #endif 920 921 if (!lit) 922 { 923 #ifdef FEAT_DIGRAPHS 924 // Typing CTRL-K gets a digraph. 925 if (*cp == Ctrl_K 926 && ((nv_cmds[idx].cmd_flags & NV_LANG) 927 || cp == &ca.extra_char) 928 && vim_strchr(p_cpo, CPO_DIGRAPH) == NULL) 929 { 930 c = get_digraph(FALSE); 931 if (c > 0) 932 { 933 *cp = c; 934 # ifdef FEAT_CMDL_INFO 935 // Guessing how to update showcmd here... 936 del_from_showcmd(3); 937 need_flushbuf |= add_to_showcmd(*cp); 938 # endif 939 } 940 } 941 #endif 942 943 // adjust chars > 127, except after "tTfFr" commands 944 LANGMAP_ADJUST(*cp, !lang); 945 #ifdef FEAT_RIGHTLEFT 946 // adjust Hebrew mapped char 947 if (p_hkmap && lang && KeyTyped) 948 *cp = hkmap(*cp); 949 #endif 950 } 951 952 /* 953 * When the next character is CTRL-\ a following CTRL-N means the 954 * command is aborted and we go to Normal mode. 955 */ 956 if (cp == &ca.extra_char 957 && ca.nchar == Ctrl_BSL 958 && (ca.extra_char == Ctrl_N || ca.extra_char == Ctrl_G)) 959 { 960 ca.cmdchar = Ctrl_BSL; 961 ca.nchar = ca.extra_char; 962 idx = find_command(ca.cmdchar); 963 } 964 else if ((ca.nchar == 'n' || ca.nchar == 'N') && ca.cmdchar == 'g') 965 ca.oap->op_type = get_op_type(*cp, NUL); 966 else if (*cp == Ctrl_BSL) 967 { 968 long towait = (p_ttm >= 0 ? p_ttm : p_tm); 969 970 // There is a busy wait here when typing "f<C-\>" and then 971 // something different from CTRL-N. Can't be avoided. 972 while ((c = vpeekc()) <= 0 && towait > 0L) 973 { 974 do_sleep(towait > 50L ? 50L : towait); 975 towait -= 50L; 976 } 977 if (c > 0) 978 { 979 c = plain_vgetc(); 980 if (c != Ctrl_N && c != Ctrl_G) 981 vungetc(c); 982 else 983 { 984 ca.cmdchar = Ctrl_BSL; 985 ca.nchar = c; 986 idx = find_command(ca.cmdchar); 987 } 988 } 989 } 990 991 // When getting a text character and the next character is a 992 // multi-byte character, it could be a composing character. 993 // However, don't wait for it to arrive. Also, do enable mapping, 994 // because if it's put back with vungetc() it's too late to apply 995 // mapping. 996 --no_mapping; 997 while (enc_utf8 && lang && (c = vpeekc()) > 0 998 && (c >= 0x100 || MB_BYTE2LEN(vpeekc()) > 1)) 999 { 1000 c = plain_vgetc(); 1001 if (!utf_iscomposing(c)) 1002 { 1003 vungetc(c); // it wasn't, put it back 1004 break; 1005 } 1006 else if (ca.ncharC1 == 0) 1007 ca.ncharC1 = c; 1008 else 1009 ca.ncharC2 = c; 1010 } 1011 ++no_mapping; 1012 } 1013 --no_mapping; 1014 --allow_keys; 1015 } 1016 1017 #ifdef FEAT_CMDL_INFO 1018 /* 1019 * Flush the showcmd characters onto the screen so we can see them while 1020 * the command is being executed. Only do this when the shown command was 1021 * actually displayed, otherwise this will slow down a lot when executing 1022 * mappings. 1023 */ 1024 if (need_flushbuf) 1025 out_flush(); 1026 #endif 1027 if (ca.cmdchar != K_IGNORE) 1028 did_cursorhold = FALSE; 1029 1030 State = NORMAL; 1031 1032 if (ca.nchar == ESC) 1033 { 1034 clearop(oap); 1035 if (restart_edit == 0 && goto_im()) 1036 restart_edit = 'a'; 1037 goto normal_end; 1038 } 1039 1040 if (ca.cmdchar != K_IGNORE) 1041 { 1042 msg_didout = FALSE; // don't scroll screen up for normal command 1043 msg_col = 0; 1044 } 1045 1046 old_pos = curwin->w_cursor; // remember where cursor was 1047 1048 // When 'keymodel' contains "startsel" some keys start Select/Visual 1049 // mode. 1050 if (!VIsual_active && km_startsel) 1051 { 1052 if (nv_cmds[idx].cmd_flags & NV_SS) 1053 { 1054 start_selection(); 1055 unshift_special(&ca); 1056 idx = find_command(ca.cmdchar); 1057 } 1058 else if ((nv_cmds[idx].cmd_flags & NV_SSS) 1059 && (mod_mask & MOD_MASK_SHIFT)) 1060 { 1061 start_selection(); 1062 mod_mask &= ~MOD_MASK_SHIFT; 1063 } 1064 } 1065 1066 /* 1067 * Execute the command! 1068 * Call the command function found in the commands table. 1069 */ 1070 ca.arg = nv_cmds[idx].cmd_arg; 1071 (nv_cmds[idx].cmd_func)(&ca); 1072 1073 /* 1074 * If we didn't start or finish an operator, reset oap->regname, unless we 1075 * need it later. 1076 */ 1077 if (!finish_op 1078 && !oap->op_type 1079 && (idx < 0 || !(nv_cmds[idx].cmd_flags & NV_KEEPREG))) 1080 { 1081 clearop(oap); 1082 #ifdef FEAT_EVAL 1083 { 1084 int regname = 0; 1085 1086 // Adjust the register according to 'clipboard', so that when 1087 // "unnamed" is present it becomes '*' or '+' instead of '"'. 1088 # ifdef FEAT_CLIPBOARD 1089 adjust_clip_reg(®name); 1090 # endif 1091 set_reg_var(regname); 1092 } 1093 #endif 1094 } 1095 1096 // Get the length of mapped chars again after typing a count, second 1097 // character or "z333<cr>". 1098 if (old_mapped_len > 0) 1099 old_mapped_len = typebuf_maplen(); 1100 1101 /* 1102 * If an operation is pending, handle it. But not for K_IGNORE. 1103 */ 1104 if (ca.cmdchar != K_IGNORE) 1105 do_pending_operator(&ca, old_col, FALSE); 1106 1107 /* 1108 * Wait for a moment when a message is displayed that will be overwritten 1109 * by the mode message. 1110 * In Visual mode and with "^O" in Insert mode, a short message will be 1111 * overwritten by the mode message. Wait a bit, until a key is hit. 1112 * In Visual mode, it's more important to keep the Visual area updated 1113 * than keeping a message (e.g. from a /pat search). 1114 * Only do this if the command was typed, not from a mapping. 1115 * Don't wait when emsg_silent is non-zero. 1116 * Also wait a bit after an error message, e.g. for "^O:". 1117 * Don't redraw the screen, it would remove the message. 1118 */ 1119 if ( ((p_smd 1120 && msg_silent == 0 1121 && (restart_edit != 0 1122 || (VIsual_active 1123 && old_pos.lnum == curwin->w_cursor.lnum 1124 && old_pos.col == curwin->w_cursor.col) 1125 ) 1126 && (clear_cmdline 1127 || redraw_cmdline) 1128 && (msg_didout || (msg_didany && msg_scroll)) 1129 && !msg_nowait 1130 && KeyTyped) 1131 || (restart_edit != 0 1132 && !VIsual_active 1133 && (msg_scroll 1134 || emsg_on_display))) 1135 && oap->regname == 0 1136 && !(ca.retval & CA_COMMAND_BUSY) 1137 && stuff_empty() 1138 && typebuf_typed() 1139 && emsg_silent == 0 1140 && !did_wait_return 1141 && oap->op_type == OP_NOP) 1142 { 1143 int save_State = State; 1144 1145 // Draw the cursor with the right shape here 1146 if (restart_edit != 0) 1147 State = INSERT; 1148 1149 // If need to redraw, and there is a "keep_msg", redraw before the 1150 // delay 1151 if (must_redraw && keep_msg != NULL && !emsg_on_display) 1152 { 1153 char_u *kmsg; 1154 1155 kmsg = keep_msg; 1156 keep_msg = NULL; 1157 // Showmode() will clear keep_msg, but we want to use it anyway. 1158 // First update w_topline. 1159 setcursor(); 1160 update_screen(0); 1161 // now reset it, otherwise it's put in the history again 1162 keep_msg = kmsg; 1163 1164 kmsg = vim_strsave(keep_msg); 1165 if (kmsg != NULL) 1166 { 1167 msg_attr((char *)kmsg, keep_msg_attr); 1168 vim_free(kmsg); 1169 } 1170 } 1171 setcursor(); 1172 #ifdef CURSOR_SHAPE 1173 ui_cursor_shape(); // may show different cursor shape 1174 #endif 1175 cursor_on(); 1176 out_flush(); 1177 if (msg_scroll || emsg_on_display) 1178 ui_delay(1003L, TRUE); // wait at least one second 1179 ui_delay(3003L, FALSE); // wait up to three seconds 1180 State = save_State; 1181 1182 msg_scroll = FALSE; 1183 emsg_on_display = FALSE; 1184 } 1185 1186 /* 1187 * Finish up after executing a Normal mode command. 1188 */ 1189 normal_end: 1190 1191 msg_nowait = FALSE; 1192 1193 // Reset finish_op, in case it was set 1194 #ifdef CURSOR_SHAPE 1195 c = finish_op; 1196 #endif 1197 finish_op = FALSE; 1198 #ifdef CURSOR_SHAPE 1199 // Redraw the cursor with another shape, if we were in Operator-pending 1200 // mode or did a replace command. 1201 if (c || ca.cmdchar == 'r') 1202 { 1203 ui_cursor_shape(); // may show different cursor shape 1204 # ifdef FEAT_MOUSESHAPE 1205 update_mouseshape(-1); 1206 # endif 1207 } 1208 #endif 1209 1210 #ifdef FEAT_CMDL_INFO 1211 if (oap->op_type == OP_NOP && oap->regname == 0 1212 && ca.cmdchar != K_CURSORHOLD) 1213 clear_showcmd(); 1214 #endif 1215 1216 checkpcmark(); // check if we moved since setting pcmark 1217 vim_free(ca.searchbuf); 1218 1219 if (has_mbyte) 1220 mb_adjust_cursor(); 1221 1222 if (curwin->w_p_scb && toplevel) 1223 { 1224 validate_cursor(); // may need to update w_leftcol 1225 do_check_scrollbind(TRUE); 1226 } 1227 1228 if (curwin->w_p_crb && toplevel) 1229 { 1230 validate_cursor(); // may need to update w_leftcol 1231 do_check_cursorbind(); 1232 } 1233 1234 #ifdef FEAT_TERMINAL 1235 // don't go to Insert mode if a terminal has a running job 1236 if (term_job_running(curbuf->b_term)) 1237 restart_edit = 0; 1238 #endif 1239 1240 /* 1241 * May restart edit(), if we got here with CTRL-O in Insert mode (but not 1242 * if still inside a mapping that started in Visual mode). 1243 * May switch from Visual to Select mode after CTRL-O command. 1244 */ 1245 if ( oap->op_type == OP_NOP 1246 && ((restart_edit != 0 && !VIsual_active && old_mapped_len == 0) 1247 || restart_VIsual_select == 1) 1248 && !(ca.retval & CA_COMMAND_BUSY) 1249 && stuff_empty() 1250 && oap->regname == 0) 1251 { 1252 if (restart_VIsual_select == 1) 1253 { 1254 VIsual_select = TRUE; 1255 showmode(); 1256 restart_VIsual_select = 0; 1257 } 1258 if (restart_edit != 0 && !VIsual_active && old_mapped_len == 0) 1259 (void)edit(restart_edit, FALSE, 1L); 1260 } 1261 1262 if (restart_VIsual_select == 2) 1263 restart_VIsual_select = 1; 1264 1265 // Save count before an operator for next time. 1266 opcount = ca.opcount; 1267 } 1268 1269 #ifdef FEAT_EVAL 1270 /* 1271 * Set v:count and v:count1 according to "cap". 1272 * Set v:prevcount only when "set_prevcount" is TRUE. 1273 */ 1274 static void 1275 set_vcount_ca(cmdarg_T *cap, int *set_prevcount) 1276 { 1277 long count = cap->count0; 1278 1279 // multiply with cap->opcount the same way as above 1280 if (cap->opcount != 0) 1281 count = cap->opcount * (count == 0 ? 1 : count); 1282 set_vcount(count, count == 0 ? 1 : count, *set_prevcount); 1283 *set_prevcount = FALSE; // only set v:prevcount once 1284 } 1285 #endif 1286 1287 /* 1288 * Check if highlighting for Visual mode is possible, give a warning message 1289 * if not. 1290 */ 1291 void 1292 check_visual_highlight(void) 1293 { 1294 static int did_check = FALSE; 1295 1296 if (full_screen) 1297 { 1298 if (!did_check && HL_ATTR(HLF_V) == 0) 1299 msg(_("Warning: terminal cannot highlight")); 1300 did_check = TRUE; 1301 } 1302 } 1303 1304 /* 1305 * End Visual mode. 1306 * This function should ALWAYS be called to end Visual mode, except from 1307 * do_pending_operator(). 1308 */ 1309 void 1310 end_visual_mode(void) 1311 { 1312 #ifdef FEAT_CLIPBOARD 1313 /* 1314 * If we are using the clipboard, then remember what was selected in case 1315 * we need to paste it somewhere while we still own the selection. 1316 * Only do this when the clipboard is already owned. Don't want to grab 1317 * the selection when hitting ESC. 1318 */ 1319 if (clip_star.available && clip_star.owned) 1320 clip_auto_select(); 1321 #endif 1322 1323 VIsual_active = FALSE; 1324 setmouse(); 1325 mouse_dragging = 0; 1326 1327 // Save the current VIsual area for '< and '> marks, and "gv" 1328 curbuf->b_visual.vi_mode = VIsual_mode; 1329 curbuf->b_visual.vi_start = VIsual; 1330 curbuf->b_visual.vi_end = curwin->w_cursor; 1331 curbuf->b_visual.vi_curswant = curwin->w_curswant; 1332 #ifdef FEAT_EVAL 1333 curbuf->b_visual_mode_eval = VIsual_mode; 1334 #endif 1335 if (!virtual_active()) 1336 curwin->w_cursor.coladd = 0; 1337 may_clear_cmdline(); 1338 1339 adjust_cursor_eol(); 1340 } 1341 1342 /* 1343 * Reset VIsual_active and VIsual_reselect. 1344 */ 1345 void 1346 reset_VIsual_and_resel(void) 1347 { 1348 if (VIsual_active) 1349 { 1350 end_visual_mode(); 1351 redraw_curbuf_later(INVERTED); // delete the inversion later 1352 } 1353 VIsual_reselect = FALSE; 1354 } 1355 1356 /* 1357 * Reset VIsual_active and VIsual_reselect if it's set. 1358 */ 1359 void 1360 reset_VIsual(void) 1361 { 1362 if (VIsual_active) 1363 { 1364 end_visual_mode(); 1365 redraw_curbuf_later(INVERTED); // delete the inversion later 1366 VIsual_reselect = FALSE; 1367 } 1368 } 1369 1370 void 1371 restore_visual_mode(void) 1372 { 1373 if (VIsual_mode_orig != NUL) 1374 { 1375 curbuf->b_visual.vi_mode = VIsual_mode_orig; 1376 VIsual_mode_orig = NUL; 1377 } 1378 } 1379 1380 /* 1381 * Check for a balloon-eval special item to include when searching for an 1382 * identifier. When "dir" is BACKWARD "ptr[-1]" must be valid! 1383 * Returns TRUE if the character at "*ptr" should be included. 1384 * "dir" is FORWARD or BACKWARD, the direction of searching. 1385 * "*colp" is in/decremented if "ptr[-dir]" should also be included. 1386 * "bnp" points to a counter for square brackets. 1387 */ 1388 static int 1389 find_is_eval_item( 1390 char_u *ptr, 1391 int *colp, 1392 int *bnp, 1393 int dir) 1394 { 1395 // Accept everything inside []. 1396 if ((*ptr == ']' && dir == BACKWARD) || (*ptr == '[' && dir == FORWARD)) 1397 ++*bnp; 1398 if (*bnp > 0) 1399 { 1400 if ((*ptr == '[' && dir == BACKWARD) || (*ptr == ']' && dir == FORWARD)) 1401 --*bnp; 1402 return TRUE; 1403 } 1404 1405 // skip over "s.var" 1406 if (*ptr == '.') 1407 return TRUE; 1408 1409 // two-character item: s->var 1410 if (ptr[dir == BACKWARD ? 0 : 1] == '>' 1411 && ptr[dir == BACKWARD ? -1 : 0] == '-') 1412 { 1413 *colp += dir; 1414 return TRUE; 1415 } 1416 return FALSE; 1417 } 1418 1419 /* 1420 * Find the identifier under or to the right of the cursor. 1421 * "find_type" can have one of three values: 1422 * FIND_IDENT: find an identifier (keyword) 1423 * FIND_STRING: find any non-white text 1424 * FIND_IDENT + FIND_STRING: find any non-white text, identifier preferred. 1425 * FIND_EVAL: find text useful for C program debugging 1426 * 1427 * There are three steps: 1428 * 1. Search forward for the start of an identifier/text. Doesn't move if 1429 * already on one. 1430 * 2. Search backward for the start of this identifier/text. 1431 * This doesn't match the real Vi but I like it a little better and it 1432 * shouldn't bother anyone. 1433 * 3. Search forward to the end of this identifier/text. 1434 * When FIND_IDENT isn't defined, we backup until a blank. 1435 * 1436 * Returns the length of the text, or zero if no text is found. 1437 * If text is found, a pointer to the text is put in "*text". This 1438 * points into the current buffer line and is not always NUL terminated. 1439 */ 1440 int 1441 find_ident_under_cursor(char_u **text, int find_type) 1442 { 1443 return find_ident_at_pos(curwin, curwin->w_cursor.lnum, 1444 curwin->w_cursor.col, text, NULL, find_type); 1445 } 1446 1447 /* 1448 * Like find_ident_under_cursor(), but for any window and any position. 1449 * However: Uses 'iskeyword' from the current window!. 1450 */ 1451 int 1452 find_ident_at_pos( 1453 win_T *wp, 1454 linenr_T lnum, 1455 colnr_T startcol, 1456 char_u **text, 1457 int *textcol, // column where "text" starts, can be NULL 1458 int find_type) 1459 { 1460 char_u *ptr; 1461 int col = 0; // init to shut up GCC 1462 int i; 1463 int this_class = 0; 1464 int prev_class; 1465 int prevcol; 1466 int bn = 0; // bracket nesting 1467 1468 /* 1469 * if i == 0: try to find an identifier 1470 * if i == 1: try to find any non-white text 1471 */ 1472 ptr = ml_get_buf(wp->w_buffer, lnum, FALSE); 1473 for (i = (find_type & FIND_IDENT) ? 0 : 1; i < 2; ++i) 1474 { 1475 /* 1476 * 1. skip to start of identifier/text 1477 */ 1478 col = startcol; 1479 if (has_mbyte) 1480 { 1481 while (ptr[col] != NUL) 1482 { 1483 // Stop at a ']' to evaluate "a[x]". 1484 if ((find_type & FIND_EVAL) && ptr[col] == ']') 1485 break; 1486 this_class = mb_get_class(ptr + col); 1487 if (this_class != 0 && (i == 1 || this_class != 1)) 1488 break; 1489 col += (*mb_ptr2len)(ptr + col); 1490 } 1491 } 1492 else 1493 while (ptr[col] != NUL 1494 && (i == 0 ? !vim_iswordc(ptr[col]) : VIM_ISWHITE(ptr[col])) 1495 && (!(find_type & FIND_EVAL) || ptr[col] != ']') 1496 ) 1497 ++col; 1498 1499 // When starting on a ']' count it, so that we include the '['. 1500 bn = ptr[col] == ']'; 1501 1502 /* 1503 * 2. Back up to start of identifier/text. 1504 */ 1505 if (has_mbyte) 1506 { 1507 // Remember class of character under cursor. 1508 if ((find_type & FIND_EVAL) && ptr[col] == ']') 1509 this_class = mb_get_class((char_u *)"a"); 1510 else 1511 this_class = mb_get_class(ptr + col); 1512 while (col > 0 && this_class != 0) 1513 { 1514 prevcol = col - 1 - (*mb_head_off)(ptr, ptr + col - 1); 1515 prev_class = mb_get_class(ptr + prevcol); 1516 if (this_class != prev_class 1517 && (i == 0 1518 || prev_class == 0 1519 || (find_type & FIND_IDENT)) 1520 && (!(find_type & FIND_EVAL) 1521 || prevcol == 0 1522 || !find_is_eval_item(ptr + prevcol, &prevcol, 1523 &bn, BACKWARD)) 1524 ) 1525 break; 1526 col = prevcol; 1527 } 1528 1529 // If we don't want just any old text, or we've found an 1530 // identifier, stop searching. 1531 if (this_class > 2) 1532 this_class = 2; 1533 if (!(find_type & FIND_STRING) || this_class == 2) 1534 break; 1535 } 1536 else 1537 { 1538 while (col > 0 1539 && ((i == 0 1540 ? vim_iswordc(ptr[col - 1]) 1541 : (!VIM_ISWHITE(ptr[col - 1]) 1542 && (!(find_type & FIND_IDENT) 1543 || !vim_iswordc(ptr[col - 1])))) 1544 || ((find_type & FIND_EVAL) 1545 && col > 1 1546 && find_is_eval_item(ptr + col - 1, &col, 1547 &bn, BACKWARD)) 1548 )) 1549 --col; 1550 1551 // If we don't want just any old text, or we've found an 1552 // identifier, stop searching. 1553 if (!(find_type & FIND_STRING) || vim_iswordc(ptr[col])) 1554 break; 1555 } 1556 } 1557 1558 if (ptr[col] == NUL || (i == 0 1559 && (has_mbyte ? this_class != 2 : !vim_iswordc(ptr[col])))) 1560 { 1561 // didn't find an identifier or text 1562 if ((find_type & FIND_NOERROR) == 0) 1563 { 1564 if (find_type & FIND_STRING) 1565 emsg(_("E348: No string under cursor")); 1566 else 1567 emsg(_(e_noident)); 1568 } 1569 return 0; 1570 } 1571 ptr += col; 1572 *text = ptr; 1573 if (textcol != NULL) 1574 *textcol = col; 1575 1576 /* 1577 * 3. Find the end if the identifier/text. 1578 */ 1579 bn = 0; 1580 startcol -= col; 1581 col = 0; 1582 if (has_mbyte) 1583 { 1584 // Search for point of changing multibyte character class. 1585 this_class = mb_get_class(ptr); 1586 while (ptr[col] != NUL 1587 && ((i == 0 ? mb_get_class(ptr + col) == this_class 1588 : mb_get_class(ptr + col) != 0) 1589 || ((find_type & FIND_EVAL) 1590 && col <= (int)startcol 1591 && find_is_eval_item(ptr + col, &col, &bn, FORWARD)) 1592 )) 1593 col += (*mb_ptr2len)(ptr + col); 1594 } 1595 else 1596 while ((i == 0 ? vim_iswordc(ptr[col]) 1597 : (ptr[col] != NUL && !VIM_ISWHITE(ptr[col]))) 1598 || ((find_type & FIND_EVAL) 1599 && col <= (int)startcol 1600 && find_is_eval_item(ptr + col, &col, &bn, FORWARD)) 1601 ) 1602 ++col; 1603 1604 return col; 1605 } 1606 1607 /* 1608 * Prepare for redo of a normal command. 1609 */ 1610 static void 1611 prep_redo_cmd(cmdarg_T *cap) 1612 { 1613 prep_redo(cap->oap->regname, cap->count0, 1614 NUL, cap->cmdchar, NUL, NUL, cap->nchar); 1615 } 1616 1617 /* 1618 * Prepare for redo of any command. 1619 * Note that only the last argument can be a multi-byte char. 1620 */ 1621 void 1622 prep_redo( 1623 int regname, 1624 long num, 1625 int cmd1, 1626 int cmd2, 1627 int cmd3, 1628 int cmd4, 1629 int cmd5) 1630 { 1631 ResetRedobuff(); 1632 if (regname != 0) // yank from specified buffer 1633 { 1634 AppendCharToRedobuff('"'); 1635 AppendCharToRedobuff(regname); 1636 } 1637 if (num) 1638 AppendNumberToRedobuff(num); 1639 1640 if (cmd1 != NUL) 1641 AppendCharToRedobuff(cmd1); 1642 if (cmd2 != NUL) 1643 AppendCharToRedobuff(cmd2); 1644 if (cmd3 != NUL) 1645 AppendCharToRedobuff(cmd3); 1646 if (cmd4 != NUL) 1647 AppendCharToRedobuff(cmd4); 1648 if (cmd5 != NUL) 1649 AppendCharToRedobuff(cmd5); 1650 } 1651 1652 /* 1653 * check for operator active and clear it 1654 * 1655 * return TRUE if operator was active 1656 */ 1657 static int 1658 checkclearop(oparg_T *oap) 1659 { 1660 if (oap->op_type == OP_NOP) 1661 return FALSE; 1662 clearopbeep(oap); 1663 return TRUE; 1664 } 1665 1666 /* 1667 * Check for operator or Visual active. Clear active operator. 1668 * 1669 * Return TRUE if operator or Visual was active. 1670 */ 1671 static int 1672 checkclearopq(oparg_T *oap) 1673 { 1674 if (oap->op_type == OP_NOP && !VIsual_active) 1675 return FALSE; 1676 clearopbeep(oap); 1677 return TRUE; 1678 } 1679 1680 void 1681 clearop(oparg_T *oap) 1682 { 1683 oap->op_type = OP_NOP; 1684 oap->regname = 0; 1685 oap->motion_force = NUL; 1686 oap->use_reg_one = FALSE; 1687 } 1688 1689 void 1690 clearopbeep(oparg_T *oap) 1691 { 1692 clearop(oap); 1693 beep_flush(); 1694 } 1695 1696 /* 1697 * Remove the shift modifier from a special key. 1698 */ 1699 static void 1700 unshift_special(cmdarg_T *cap) 1701 { 1702 switch (cap->cmdchar) 1703 { 1704 case K_S_RIGHT: cap->cmdchar = K_RIGHT; break; 1705 case K_S_LEFT: cap->cmdchar = K_LEFT; break; 1706 case K_S_UP: cap->cmdchar = K_UP; break; 1707 case K_S_DOWN: cap->cmdchar = K_DOWN; break; 1708 case K_S_HOME: cap->cmdchar = K_HOME; break; 1709 case K_S_END: cap->cmdchar = K_END; break; 1710 } 1711 cap->cmdchar = simplify_key(cap->cmdchar, &mod_mask); 1712 } 1713 1714 /* 1715 * If the mode is currently displayed clear the command line or update the 1716 * command displayed. 1717 */ 1718 void 1719 may_clear_cmdline(void) 1720 { 1721 if (mode_displayed) 1722 clear_cmdline = TRUE; // unshow visual mode later 1723 #ifdef FEAT_CMDL_INFO 1724 else 1725 clear_showcmd(); 1726 #endif 1727 } 1728 1729 #if defined(FEAT_CMDL_INFO) || defined(PROTO) 1730 /* 1731 * Routines for displaying a partly typed command 1732 */ 1733 1734 #define SHOWCMD_BUFLEN SHOWCMD_COLS + 1 + 30 1735 static char_u showcmd_buf[SHOWCMD_BUFLEN]; 1736 static char_u old_showcmd_buf[SHOWCMD_BUFLEN]; // For push_showcmd() 1737 static int showcmd_is_clear = TRUE; 1738 static int showcmd_visual = FALSE; 1739 1740 static void display_showcmd(void); 1741 1742 void 1743 clear_showcmd(void) 1744 { 1745 if (!p_sc) 1746 return; 1747 1748 if (VIsual_active && !char_avail()) 1749 { 1750 int cursor_bot = LT_POS(VIsual, curwin->w_cursor); 1751 long lines; 1752 colnr_T leftcol, rightcol; 1753 linenr_T top, bot; 1754 1755 // Show the size of the Visual area. 1756 if (cursor_bot) 1757 { 1758 top = VIsual.lnum; 1759 bot = curwin->w_cursor.lnum; 1760 } 1761 else 1762 { 1763 top = curwin->w_cursor.lnum; 1764 bot = VIsual.lnum; 1765 } 1766 # ifdef FEAT_FOLDING 1767 // Include closed folds as a whole. 1768 (void)hasFolding(top, &top, NULL); 1769 (void)hasFolding(bot, NULL, &bot); 1770 # endif 1771 lines = bot - top + 1; 1772 1773 if (VIsual_mode == Ctrl_V) 1774 { 1775 # ifdef FEAT_LINEBREAK 1776 char_u *saved_sbr = p_sbr; 1777 char_u *saved_w_sbr = curwin->w_p_sbr; 1778 1779 // Make 'sbr' empty for a moment to get the correct size. 1780 p_sbr = empty_option; 1781 curwin->w_p_sbr = empty_option; 1782 # endif 1783 getvcols(curwin, &curwin->w_cursor, &VIsual, &leftcol, &rightcol); 1784 # ifdef FEAT_LINEBREAK 1785 p_sbr = saved_sbr; 1786 curwin->w_p_sbr = saved_w_sbr; 1787 # endif 1788 sprintf((char *)showcmd_buf, "%ldx%ld", lines, 1789 (long)(rightcol - leftcol + 1)); 1790 } 1791 else if (VIsual_mode == 'V' || VIsual.lnum != curwin->w_cursor.lnum) 1792 sprintf((char *)showcmd_buf, "%ld", lines); 1793 else 1794 { 1795 char_u *s, *e; 1796 int l; 1797 int bytes = 0; 1798 int chars = 0; 1799 1800 if (cursor_bot) 1801 { 1802 s = ml_get_pos(&VIsual); 1803 e = ml_get_cursor(); 1804 } 1805 else 1806 { 1807 s = ml_get_cursor(); 1808 e = ml_get_pos(&VIsual); 1809 } 1810 while ((*p_sel != 'e') ? s <= e : s < e) 1811 { 1812 l = (*mb_ptr2len)(s); 1813 if (l == 0) 1814 { 1815 ++bytes; 1816 ++chars; 1817 break; // end of line 1818 } 1819 bytes += l; 1820 ++chars; 1821 s += l; 1822 } 1823 if (bytes == chars) 1824 sprintf((char *)showcmd_buf, "%d", chars); 1825 else 1826 sprintf((char *)showcmd_buf, "%d-%d", chars, bytes); 1827 } 1828 showcmd_buf[SHOWCMD_COLS] = NUL; // truncate 1829 showcmd_visual = TRUE; 1830 } 1831 else 1832 { 1833 showcmd_buf[0] = NUL; 1834 showcmd_visual = FALSE; 1835 1836 // Don't actually display something if there is nothing to clear. 1837 if (showcmd_is_clear) 1838 return; 1839 } 1840 1841 display_showcmd(); 1842 } 1843 1844 /* 1845 * Add 'c' to string of shown command chars. 1846 * Return TRUE if output has been written (and setcursor() has been called). 1847 */ 1848 int 1849 add_to_showcmd(int c) 1850 { 1851 char_u *p; 1852 int old_len; 1853 int extra_len; 1854 int overflow; 1855 int i; 1856 static int ignore[] = 1857 { 1858 #ifdef FEAT_GUI 1859 K_VER_SCROLLBAR, K_HOR_SCROLLBAR, 1860 K_LEFTMOUSE_NM, K_LEFTRELEASE_NM, 1861 #endif 1862 K_IGNORE, K_PS, 1863 K_LEFTMOUSE, K_LEFTDRAG, K_LEFTRELEASE, K_MOUSEMOVE, 1864 K_MIDDLEMOUSE, K_MIDDLEDRAG, K_MIDDLERELEASE, 1865 K_RIGHTMOUSE, K_RIGHTDRAG, K_RIGHTRELEASE, 1866 K_MOUSEDOWN, K_MOUSEUP, K_MOUSELEFT, K_MOUSERIGHT, 1867 K_X1MOUSE, K_X1DRAG, K_X1RELEASE, K_X2MOUSE, K_X2DRAG, K_X2RELEASE, 1868 K_CURSORHOLD, 1869 0 1870 }; 1871 1872 if (!p_sc || msg_silent != 0) 1873 return FALSE; 1874 1875 if (showcmd_visual) 1876 { 1877 showcmd_buf[0] = NUL; 1878 showcmd_visual = FALSE; 1879 } 1880 1881 // Ignore keys that are scrollbar updates and mouse clicks 1882 if (IS_SPECIAL(c)) 1883 for (i = 0; ignore[i] != 0; ++i) 1884 if (ignore[i] == c) 1885 return FALSE; 1886 1887 p = transchar(c); 1888 if (*p == ' ') 1889 STRCPY(p, "<20>"); 1890 old_len = (int)STRLEN(showcmd_buf); 1891 extra_len = (int)STRLEN(p); 1892 overflow = old_len + extra_len - SHOWCMD_COLS; 1893 if (overflow > 0) 1894 mch_memmove(showcmd_buf, showcmd_buf + overflow, 1895 old_len - overflow + 1); 1896 STRCAT(showcmd_buf, p); 1897 1898 if (char_avail()) 1899 return FALSE; 1900 1901 display_showcmd(); 1902 1903 return TRUE; 1904 } 1905 1906 void 1907 add_to_showcmd_c(int c) 1908 { 1909 if (!add_to_showcmd(c)) 1910 setcursor(); 1911 } 1912 1913 /* 1914 * Delete 'len' characters from the end of the shown command. 1915 */ 1916 static void 1917 del_from_showcmd(int len) 1918 { 1919 int old_len; 1920 1921 if (!p_sc) 1922 return; 1923 1924 old_len = (int)STRLEN(showcmd_buf); 1925 if (len > old_len) 1926 len = old_len; 1927 showcmd_buf[old_len - len] = NUL; 1928 1929 if (!char_avail()) 1930 display_showcmd(); 1931 } 1932 1933 /* 1934 * push_showcmd() and pop_showcmd() are used when waiting for the user to type 1935 * something and there is a partial mapping. 1936 */ 1937 void 1938 push_showcmd(void) 1939 { 1940 if (p_sc) 1941 STRCPY(old_showcmd_buf, showcmd_buf); 1942 } 1943 1944 void 1945 pop_showcmd(void) 1946 { 1947 if (!p_sc) 1948 return; 1949 1950 STRCPY(showcmd_buf, old_showcmd_buf); 1951 1952 display_showcmd(); 1953 } 1954 1955 static void 1956 display_showcmd(void) 1957 { 1958 int len; 1959 1960 cursor_off(); 1961 1962 len = (int)STRLEN(showcmd_buf); 1963 if (len == 0) 1964 showcmd_is_clear = TRUE; 1965 else 1966 { 1967 screen_puts(showcmd_buf, (int)Rows - 1, sc_col, 0); 1968 showcmd_is_clear = FALSE; 1969 } 1970 1971 /* 1972 * clear the rest of an old message by outputting up to SHOWCMD_COLS 1973 * spaces 1974 */ 1975 screen_puts((char_u *)" " + len, (int)Rows - 1, sc_col + len, 0); 1976 1977 setcursor(); // put cursor back where it belongs 1978 } 1979 #endif 1980 1981 /* 1982 * When "check" is FALSE, prepare for commands that scroll the window. 1983 * When "check" is TRUE, take care of scroll-binding after the window has 1984 * scrolled. Called from normal_cmd() and edit(). 1985 */ 1986 void 1987 do_check_scrollbind(int check) 1988 { 1989 static win_T *old_curwin = NULL; 1990 static linenr_T old_topline = 0; 1991 #ifdef FEAT_DIFF 1992 static int old_topfill = 0; 1993 #endif 1994 static buf_T *old_buf = NULL; 1995 static colnr_T old_leftcol = 0; 1996 1997 if (check && curwin->w_p_scb) 1998 { 1999 // If a ":syncbind" command was just used, don't scroll, only reset 2000 // the values. 2001 if (did_syncbind) 2002 did_syncbind = FALSE; 2003 else if (curwin == old_curwin) 2004 { 2005 /* 2006 * Synchronize other windows, as necessary according to 2007 * 'scrollbind'. Don't do this after an ":edit" command, except 2008 * when 'diff' is set. 2009 */ 2010 if ((curwin->w_buffer == old_buf 2011 #ifdef FEAT_DIFF 2012 || curwin->w_p_diff 2013 #endif 2014 ) 2015 && (curwin->w_topline != old_topline 2016 #ifdef FEAT_DIFF 2017 || curwin->w_topfill != old_topfill 2018 #endif 2019 || curwin->w_leftcol != old_leftcol)) 2020 { 2021 check_scrollbind(curwin->w_topline - old_topline, 2022 (long)(curwin->w_leftcol - old_leftcol)); 2023 } 2024 } 2025 else if (vim_strchr(p_sbo, 'j')) // jump flag set in 'scrollopt' 2026 { 2027 /* 2028 * When switching between windows, make sure that the relative 2029 * vertical offset is valid for the new window. The relative 2030 * offset is invalid whenever another 'scrollbind' window has 2031 * scrolled to a point that would force the current window to 2032 * scroll past the beginning or end of its buffer. When the 2033 * resync is performed, some of the other 'scrollbind' windows may 2034 * need to jump so that the current window's relative position is 2035 * visible on-screen. 2036 */ 2037 check_scrollbind(curwin->w_topline - curwin->w_scbind_pos, 0L); 2038 } 2039 curwin->w_scbind_pos = curwin->w_topline; 2040 } 2041 2042 old_curwin = curwin; 2043 old_topline = curwin->w_topline; 2044 #ifdef FEAT_DIFF 2045 old_topfill = curwin->w_topfill; 2046 #endif 2047 old_buf = curwin->w_buffer; 2048 old_leftcol = curwin->w_leftcol; 2049 } 2050 2051 /* 2052 * Synchronize any windows that have "scrollbind" set, based on the 2053 * number of rows by which the current window has changed 2054 * (1998-11-02 16:21:01 R. Edward Ralston <[email protected]>) 2055 */ 2056 void 2057 check_scrollbind(linenr_T topline_diff, long leftcol_diff) 2058 { 2059 int want_ver; 2060 int want_hor; 2061 win_T *old_curwin = curwin; 2062 buf_T *old_curbuf = curbuf; 2063 int old_VIsual_select = VIsual_select; 2064 int old_VIsual_active = VIsual_active; 2065 colnr_T tgt_leftcol = curwin->w_leftcol; 2066 long topline; 2067 long y; 2068 2069 /* 2070 * check 'scrollopt' string for vertical and horizontal scroll options 2071 */ 2072 want_ver = (vim_strchr(p_sbo, 'v') && topline_diff != 0); 2073 #ifdef FEAT_DIFF 2074 want_ver |= old_curwin->w_p_diff; 2075 #endif 2076 want_hor = (vim_strchr(p_sbo, 'h') && (leftcol_diff || topline_diff != 0)); 2077 2078 /* 2079 * loop through the scrollbound windows and scroll accordingly 2080 */ 2081 VIsual_select = VIsual_active = 0; 2082 FOR_ALL_WINDOWS(curwin) 2083 { 2084 curbuf = curwin->w_buffer; 2085 // skip original window and windows with 'noscrollbind' 2086 if (curwin != old_curwin && curwin->w_p_scb) 2087 { 2088 /* 2089 * do the vertical scroll 2090 */ 2091 if (want_ver) 2092 { 2093 #ifdef FEAT_DIFF 2094 if (old_curwin->w_p_diff && curwin->w_p_diff) 2095 { 2096 diff_set_topline(old_curwin, curwin); 2097 } 2098 else 2099 #endif 2100 { 2101 curwin->w_scbind_pos += topline_diff; 2102 topline = curwin->w_scbind_pos; 2103 if (topline > curbuf->b_ml.ml_line_count) 2104 topline = curbuf->b_ml.ml_line_count; 2105 if (topline < 1) 2106 topline = 1; 2107 2108 y = topline - curwin->w_topline; 2109 if (y > 0) 2110 scrollup(y, FALSE); 2111 else 2112 scrolldown(-y, FALSE); 2113 } 2114 2115 redraw_later(VALID); 2116 cursor_correct(); 2117 curwin->w_redr_status = TRUE; 2118 } 2119 2120 /* 2121 * do the horizontal scroll 2122 */ 2123 if (want_hor && curwin->w_leftcol != tgt_leftcol) 2124 { 2125 curwin->w_leftcol = tgt_leftcol; 2126 leftcol_changed(); 2127 } 2128 } 2129 } 2130 2131 /* 2132 * reset current-window 2133 */ 2134 VIsual_select = old_VIsual_select; 2135 VIsual_active = old_VIsual_active; 2136 curwin = old_curwin; 2137 curbuf = old_curbuf; 2138 } 2139 2140 /* 2141 * Command character that's ignored. 2142 * Used for CTRL-Q and CTRL-S to avoid problems with terminals that use 2143 * xon/xoff. 2144 */ 2145 static void 2146 nv_ignore(cmdarg_T *cap) 2147 { 2148 cap->retval |= CA_COMMAND_BUSY; // don't call edit() now 2149 } 2150 2151 /* 2152 * Command character that doesn't do anything, but unlike nv_ignore() does 2153 * start edit(). Used for "startinsert" executed while starting up. 2154 */ 2155 static void 2156 nv_nop(cmdarg_T *cap UNUSED) 2157 { 2158 } 2159 2160 /* 2161 * Command character doesn't exist. 2162 */ 2163 static void 2164 nv_error(cmdarg_T *cap) 2165 { 2166 clearopbeep(cap->oap); 2167 } 2168 2169 /* 2170 * <Help> and <F1> commands. 2171 */ 2172 static void 2173 nv_help(cmdarg_T *cap) 2174 { 2175 if (!checkclearopq(cap->oap)) 2176 ex_help(NULL); 2177 } 2178 2179 /* 2180 * CTRL-A and CTRL-X: Add or subtract from letter or number under cursor. 2181 */ 2182 static void 2183 nv_addsub(cmdarg_T *cap) 2184 { 2185 #ifdef FEAT_JOB_CHANNEL 2186 if (bt_prompt(curbuf) && !prompt_curpos_editable()) 2187 clearopbeep(cap->oap); 2188 else 2189 #endif 2190 if (!VIsual_active && cap->oap->op_type == OP_NOP) 2191 { 2192 prep_redo_cmd(cap); 2193 cap->oap->op_type = cap->cmdchar == Ctrl_A ? OP_NR_ADD : OP_NR_SUB; 2194 op_addsub(cap->oap, cap->count1, cap->arg); 2195 cap->oap->op_type = OP_NOP; 2196 } 2197 else if (VIsual_active) 2198 nv_operator(cap); 2199 else 2200 clearop(cap->oap); 2201 } 2202 2203 /* 2204 * CTRL-F, CTRL-B, etc: Scroll page up or down. 2205 */ 2206 static void 2207 nv_page(cmdarg_T *cap) 2208 { 2209 if (!checkclearop(cap->oap)) 2210 { 2211 if (mod_mask & MOD_MASK_CTRL) 2212 { 2213 // <C-PageUp>: tab page back; <C-PageDown>: tab page forward 2214 if (cap->arg == BACKWARD) 2215 goto_tabpage(-(int)cap->count1); 2216 else 2217 goto_tabpage((int)cap->count0); 2218 } 2219 else 2220 (void)onepage(cap->arg, cap->count1); 2221 } 2222 } 2223 2224 /* 2225 * Implementation of "gd" and "gD" command. 2226 */ 2227 static void 2228 nv_gd( 2229 oparg_T *oap, 2230 int nchar, 2231 int thisblock) // 1 for "1gd" and "1gD" 2232 { 2233 int len; 2234 char_u *ptr; 2235 2236 if ((len = find_ident_under_cursor(&ptr, FIND_IDENT)) == 0 2237 || find_decl(ptr, len, nchar == 'd', thisblock, SEARCH_START) 2238 == FAIL) 2239 clearopbeep(oap); 2240 #ifdef FEAT_FOLDING 2241 else if ((fdo_flags & FDO_SEARCH) && KeyTyped && oap->op_type == OP_NOP) 2242 foldOpenCursor(); 2243 #endif 2244 } 2245 2246 /* 2247 * Return TRUE if line[offset] is not inside a C-style comment or string, FALSE 2248 * otherwise. 2249 */ 2250 static int 2251 is_ident(char_u *line, int offset) 2252 { 2253 int i; 2254 int incomment = FALSE; 2255 int instring = 0; 2256 int prev = 0; 2257 2258 for (i = 0; i < offset && line[i] != NUL; i++) 2259 { 2260 if (instring != 0) 2261 { 2262 if (prev != '\\' && line[i] == instring) 2263 instring = 0; 2264 } 2265 else if ((line[i] == '"' || line[i] == '\'') && !incomment) 2266 { 2267 instring = line[i]; 2268 } 2269 else 2270 { 2271 if (incomment) 2272 { 2273 if (prev == '*' && line[i] == '/') 2274 incomment = FALSE; 2275 } 2276 else if (prev == '/' && line[i] == '*') 2277 { 2278 incomment = TRUE; 2279 } 2280 else if (prev == '/' && line[i] == '/') 2281 { 2282 return FALSE; 2283 } 2284 } 2285 2286 prev = line[i]; 2287 } 2288 2289 return incomment == FALSE && instring == 0; 2290 } 2291 2292 /* 2293 * Search for variable declaration of "ptr[len]". 2294 * When "locally" is TRUE in the current function ("gd"), otherwise in the 2295 * current file ("gD"). 2296 * When "thisblock" is TRUE check the {} block scope. 2297 * Return FAIL when not found. 2298 */ 2299 int 2300 find_decl( 2301 char_u *ptr, 2302 int len, 2303 int locally, 2304 int thisblock, 2305 int flags_arg) // flags passed to searchit() 2306 { 2307 char_u *pat; 2308 pos_T old_pos; 2309 pos_T par_pos; 2310 pos_T found_pos; 2311 int t; 2312 int save_p_ws; 2313 int save_p_scs; 2314 int retval = OK; 2315 int incll; 2316 int searchflags = flags_arg; 2317 int valid; 2318 2319 if ((pat = alloc(len + 7)) == NULL) 2320 return FAIL; 2321 2322 // Put "\V" before the pattern to avoid that the special meaning of "." 2323 // and "~" causes trouble. 2324 sprintf((char *)pat, vim_iswordp(ptr) ? "\\V\\<%.*s\\>" : "\\V%.*s", 2325 len, ptr); 2326 old_pos = curwin->w_cursor; 2327 save_p_ws = p_ws; 2328 save_p_scs = p_scs; 2329 p_ws = FALSE; // don't wrap around end of file now 2330 p_scs = FALSE; // don't switch ignorecase off now 2331 2332 /* 2333 * With "gD" go to line 1. 2334 * With "gd" Search back for the start of the current function, then go 2335 * back until a blank line. If this fails go to line 1. 2336 */ 2337 if (!locally || !findpar(&incll, BACKWARD, 1L, '{', FALSE)) 2338 { 2339 setpcmark(); // Set in findpar() otherwise 2340 curwin->w_cursor.lnum = 1; 2341 par_pos = curwin->w_cursor; 2342 } 2343 else 2344 { 2345 par_pos = curwin->w_cursor; 2346 while (curwin->w_cursor.lnum > 1 && *skipwhite(ml_get_curline()) != NUL) 2347 --curwin->w_cursor.lnum; 2348 } 2349 curwin->w_cursor.col = 0; 2350 2351 // Search forward for the identifier, ignore comment lines. 2352 CLEAR_POS(&found_pos); 2353 for (;;) 2354 { 2355 t = searchit(curwin, curbuf, &curwin->w_cursor, NULL, FORWARD, 2356 pat, 1L, searchflags, RE_LAST, NULL); 2357 if (curwin->w_cursor.lnum >= old_pos.lnum) 2358 t = FAIL; // match after start is failure too 2359 2360 if (thisblock && t != FAIL) 2361 { 2362 pos_T *pos; 2363 2364 // Check that the block the match is in doesn't end before the 2365 // position where we started the search from. 2366 if ((pos = findmatchlimit(NULL, '}', FM_FORWARD, 2367 (int)(old_pos.lnum - curwin->w_cursor.lnum + 1))) != NULL 2368 && pos->lnum < old_pos.lnum) 2369 { 2370 // There can't be a useful match before the end of this block. 2371 // Skip to the end. 2372 curwin->w_cursor = *pos; 2373 continue; 2374 } 2375 } 2376 2377 if (t == FAIL) 2378 { 2379 // If we previously found a valid position, use it. 2380 if (found_pos.lnum != 0) 2381 { 2382 curwin->w_cursor = found_pos; 2383 t = OK; 2384 } 2385 break; 2386 } 2387 if (get_leader_len(ml_get_curline(), NULL, FALSE, TRUE) > 0) 2388 { 2389 // Ignore this line, continue at start of next line. 2390 ++curwin->w_cursor.lnum; 2391 curwin->w_cursor.col = 0; 2392 continue; 2393 } 2394 valid = is_ident(ml_get_curline(), curwin->w_cursor.col); 2395 2396 // If the current position is not a valid identifier and a previous 2397 // match is present, favor that one instead. 2398 if (!valid && found_pos.lnum != 0) 2399 { 2400 curwin->w_cursor = found_pos; 2401 break; 2402 } 2403 2404 // Global search: use first valid match found 2405 if (valid && !locally) 2406 break; 2407 if (valid && curwin->w_cursor.lnum >= par_pos.lnum) 2408 { 2409 // If we previously found a valid position, use it. 2410 if (found_pos.lnum != 0) 2411 curwin->w_cursor = found_pos; 2412 break; 2413 } 2414 2415 // For finding a local variable and the match is before the "{" or 2416 // inside a comment, continue searching. For K&R style function 2417 // declarations this skips the function header without types. 2418 if (!valid) 2419 CLEAR_POS(&found_pos); 2420 else 2421 found_pos = curwin->w_cursor; 2422 // Remove SEARCH_START from flags to avoid getting stuck at one 2423 // position. 2424 searchflags &= ~SEARCH_START; 2425 } 2426 2427 if (t == FAIL) 2428 { 2429 retval = FAIL; 2430 curwin->w_cursor = old_pos; 2431 } 2432 else 2433 { 2434 curwin->w_set_curswant = TRUE; 2435 // "n" searches forward now 2436 reset_search_dir(); 2437 } 2438 2439 vim_free(pat); 2440 p_ws = save_p_ws; 2441 p_scs = save_p_scs; 2442 2443 return retval; 2444 } 2445 2446 /* 2447 * Move 'dist' lines in direction 'dir', counting lines by *screen* 2448 * lines rather than lines in the file. 2449 * 'dist' must be positive. 2450 * 2451 * Return OK if able to move cursor, FAIL otherwise. 2452 */ 2453 static int 2454 nv_screengo(oparg_T *oap, int dir, long dist) 2455 { 2456 int linelen = linetabsize(ml_get_curline()); 2457 int retval = OK; 2458 int atend = FALSE; 2459 int n; 2460 int col_off1; // margin offset for first screen line 2461 int col_off2; // margin offset for wrapped screen line 2462 int width1; // text width for first screen line 2463 int width2; // test width for wrapped screen line 2464 2465 oap->motion_type = MCHAR; 2466 oap->inclusive = (curwin->w_curswant == MAXCOL); 2467 2468 col_off1 = curwin_col_off(); 2469 col_off2 = col_off1 - curwin_col_off2(); 2470 width1 = curwin->w_width - col_off1; 2471 width2 = curwin->w_width - col_off2; 2472 if (width2 == 0) 2473 width2 = 1; // avoid divide by zero 2474 2475 if (curwin->w_width != 0) 2476 { 2477 /* 2478 * Instead of sticking at the last character of the buffer line we 2479 * try to stick in the last column of the screen. 2480 */ 2481 if (curwin->w_curswant == MAXCOL) 2482 { 2483 atend = TRUE; 2484 validate_virtcol(); 2485 if (width1 <= 0) 2486 curwin->w_curswant = 0; 2487 else 2488 { 2489 curwin->w_curswant = width1 - 1; 2490 if (curwin->w_virtcol > curwin->w_curswant) 2491 curwin->w_curswant += ((curwin->w_virtcol 2492 - curwin->w_curswant - 1) / width2 + 1) * width2; 2493 } 2494 } 2495 else 2496 { 2497 if (linelen > width1) 2498 n = ((linelen - width1 - 1) / width2 + 1) * width2 + width1; 2499 else 2500 n = width1; 2501 if (curwin->w_curswant >= (colnr_T)n) 2502 curwin->w_curswant = n - 1; 2503 } 2504 2505 while (dist--) 2506 { 2507 if (dir == BACKWARD) 2508 { 2509 if ((long)curwin->w_curswant >= width1) 2510 // Move back within the line. This can give a negative value 2511 // for w_curswant if width1 < width2 (with cpoptions+=n), 2512 // which will get clipped to column 0. 2513 curwin->w_curswant -= width2; 2514 else 2515 { 2516 // to previous line 2517 if (curwin->w_cursor.lnum == 1) 2518 { 2519 retval = FAIL; 2520 break; 2521 } 2522 --curwin->w_cursor.lnum; 2523 #ifdef FEAT_FOLDING 2524 // Move to the start of a closed fold. Don't do that when 2525 // 'foldopen' contains "all": it will open in a moment. 2526 if (!(fdo_flags & FDO_ALL)) 2527 (void)hasFolding(curwin->w_cursor.lnum, 2528 &curwin->w_cursor.lnum, NULL); 2529 #endif 2530 linelen = linetabsize(ml_get_curline()); 2531 if (linelen > width1) 2532 curwin->w_curswant += (((linelen - width1 - 1) / width2) 2533 + 1) * width2; 2534 } 2535 } 2536 else // dir == FORWARD 2537 { 2538 if (linelen > width1) 2539 n = ((linelen - width1 - 1) / width2 + 1) * width2 + width1; 2540 else 2541 n = width1; 2542 if (curwin->w_curswant + width2 < (colnr_T)n) 2543 // move forward within line 2544 curwin->w_curswant += width2; 2545 else 2546 { 2547 // to next line 2548 #ifdef FEAT_FOLDING 2549 // Move to the end of a closed fold. 2550 (void)hasFolding(curwin->w_cursor.lnum, NULL, 2551 &curwin->w_cursor.lnum); 2552 #endif 2553 if (curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count) 2554 { 2555 retval = FAIL; 2556 break; 2557 } 2558 curwin->w_cursor.lnum++; 2559 curwin->w_curswant %= width2; 2560 // Check if the cursor has moved below the number display 2561 // when width1 < width2 (with cpoptions+=n). Subtract width2 2562 // to get a negative value for w_curswant, which will get 2563 // clipped to column 0. 2564 if (curwin->w_curswant >= width1) 2565 curwin->w_curswant -= width2; 2566 linelen = linetabsize(ml_get_curline()); 2567 } 2568 } 2569 } 2570 } 2571 2572 if (virtual_active() && atend) 2573 coladvance(MAXCOL); 2574 else 2575 coladvance(curwin->w_curswant); 2576 2577 if (curwin->w_cursor.col > 0 && curwin->w_p_wrap) 2578 { 2579 colnr_T virtcol; 2580 2581 /* 2582 * Check for landing on a character that got split at the end of the 2583 * last line. We want to advance a screenline, not end up in the same 2584 * screenline or move two screenlines. 2585 */ 2586 validate_virtcol(); 2587 virtcol = curwin->w_virtcol; 2588 #if defined(FEAT_LINEBREAK) 2589 if (virtcol > (colnr_T)width1 && *get_showbreak_value(curwin) != NUL) 2590 virtcol -= vim_strsize(get_showbreak_value(curwin)); 2591 #endif 2592 2593 if (virtcol > curwin->w_curswant 2594 && (curwin->w_curswant < (colnr_T)width1 2595 ? (curwin->w_curswant > (colnr_T)width1 / 2) 2596 : ((curwin->w_curswant - width1) % width2 2597 > (colnr_T)width2 / 2))) 2598 --curwin->w_cursor.col; 2599 } 2600 2601 if (atend) 2602 curwin->w_curswant = MAXCOL; // stick in the last column 2603 2604 return retval; 2605 } 2606 2607 /* 2608 * Handle CTRL-E and CTRL-Y commands: scroll a line up or down. 2609 * cap->arg must be TRUE for CTRL-E. 2610 */ 2611 void 2612 nv_scroll_line(cmdarg_T *cap) 2613 { 2614 if (!checkclearop(cap->oap)) 2615 scroll_redraw(cap->arg, cap->count1); 2616 } 2617 2618 /* 2619 * Scroll "count" lines up or down, and redraw. 2620 */ 2621 void 2622 scroll_redraw(int up, long count) 2623 { 2624 linenr_T prev_topline = curwin->w_topline; 2625 #ifdef FEAT_DIFF 2626 int prev_topfill = curwin->w_topfill; 2627 #endif 2628 linenr_T prev_lnum = curwin->w_cursor.lnum; 2629 2630 if (up) 2631 scrollup(count, TRUE); 2632 else 2633 scrolldown(count, TRUE); 2634 if (get_scrolloff_value()) 2635 { 2636 // Adjust the cursor position for 'scrolloff'. Mark w_topline as 2637 // valid, otherwise the screen jumps back at the end of the file. 2638 cursor_correct(); 2639 check_cursor_moved(curwin); 2640 curwin->w_valid |= VALID_TOPLINE; 2641 2642 // If moved back to where we were, at least move the cursor, otherwise 2643 // we get stuck at one position. Don't move the cursor up if the 2644 // first line of the buffer is already on the screen 2645 while (curwin->w_topline == prev_topline 2646 #ifdef FEAT_DIFF 2647 && curwin->w_topfill == prev_topfill 2648 #endif 2649 ) 2650 { 2651 if (up) 2652 { 2653 if (curwin->w_cursor.lnum > prev_lnum 2654 || cursor_down(1L, FALSE) == FAIL) 2655 break; 2656 } 2657 else 2658 { 2659 if (curwin->w_cursor.lnum < prev_lnum 2660 || prev_topline == 1L 2661 || cursor_up(1L, FALSE) == FAIL) 2662 break; 2663 } 2664 // Mark w_topline as valid, otherwise the screen jumps back at the 2665 // end of the file. 2666 check_cursor_moved(curwin); 2667 curwin->w_valid |= VALID_TOPLINE; 2668 } 2669 } 2670 if (curwin->w_cursor.lnum != prev_lnum) 2671 coladvance(curwin->w_curswant); 2672 redraw_later(VALID); 2673 } 2674 2675 /* 2676 * Commands that start with "z". 2677 */ 2678 static void 2679 nv_zet(cmdarg_T *cap) 2680 { 2681 long n; 2682 colnr_T col; 2683 int nchar = cap->nchar; 2684 #ifdef FEAT_FOLDING 2685 long old_fdl = curwin->w_p_fdl; 2686 int old_fen = curwin->w_p_fen; 2687 #endif 2688 #ifdef FEAT_SPELL 2689 int undo = FALSE; 2690 #endif 2691 long siso = get_sidescrolloff_value(); 2692 2693 if (VIM_ISDIGIT(nchar)) 2694 { 2695 /* 2696 * "z123{nchar}": edit the count before obtaining {nchar} 2697 */ 2698 if (checkclearop(cap->oap)) 2699 return; 2700 n = nchar - '0'; 2701 for (;;) 2702 { 2703 #ifdef USE_ON_FLY_SCROLL 2704 dont_scroll = TRUE; // disallow scrolling here 2705 #endif 2706 ++no_mapping; 2707 ++allow_keys; // no mapping for nchar, but allow key codes 2708 nchar = plain_vgetc(); 2709 LANGMAP_ADJUST(nchar, TRUE); 2710 --no_mapping; 2711 --allow_keys; 2712 #ifdef FEAT_CMDL_INFO 2713 (void)add_to_showcmd(nchar); 2714 #endif 2715 if (nchar == K_DEL || nchar == K_KDEL) 2716 n /= 10; 2717 else if (VIM_ISDIGIT(nchar)) 2718 n = n * 10 + (nchar - '0'); 2719 else if (nchar == CAR) 2720 { 2721 #ifdef FEAT_GUI 2722 need_mouse_correct = TRUE; 2723 #endif 2724 win_setheight((int)n); 2725 break; 2726 } 2727 else if (nchar == 'l' 2728 || nchar == 'h' 2729 || nchar == K_LEFT 2730 || nchar == K_RIGHT) 2731 { 2732 cap->count1 = n ? n * cap->count1 : cap->count1; 2733 goto dozet; 2734 } 2735 else 2736 { 2737 clearopbeep(cap->oap); 2738 break; 2739 } 2740 } 2741 cap->oap->op_type = OP_NOP; 2742 return; 2743 } 2744 2745 dozet: 2746 if ( 2747 #ifdef FEAT_FOLDING 2748 // "zf" and "zF" are always an operator, "zd", "zo", "zO", "zc" 2749 // and "zC" only in Visual mode. "zj" and "zk" are motion 2750 // commands. 2751 cap->nchar != 'f' && cap->nchar != 'F' 2752 && !(VIsual_active && vim_strchr((char_u *)"dcCoO", cap->nchar)) 2753 && cap->nchar != 'j' && cap->nchar != 'k' 2754 && 2755 #endif 2756 checkclearop(cap->oap)) 2757 return; 2758 2759 /* 2760 * For "z+", "z<CR>", "zt", "z.", "zz", "z^", "z-", "zb": 2761 * If line number given, set cursor. 2762 */ 2763 if ((vim_strchr((char_u *)"+\r\nt.z^-b", nchar) != NULL) 2764 && cap->count0 2765 && cap->count0 != curwin->w_cursor.lnum) 2766 { 2767 setpcmark(); 2768 if (cap->count0 > curbuf->b_ml.ml_line_count) 2769 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count; 2770 else 2771 curwin->w_cursor.lnum = cap->count0; 2772 check_cursor_col(); 2773 } 2774 2775 switch (nchar) 2776 { 2777 // "z+", "z<CR>" and "zt": put cursor at top of screen 2778 case '+': 2779 if (cap->count0 == 0) 2780 { 2781 // No count given: put cursor at the line below screen 2782 validate_botline(); // make sure w_botline is valid 2783 if (curwin->w_botline > curbuf->b_ml.ml_line_count) 2784 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count; 2785 else 2786 curwin->w_cursor.lnum = curwin->w_botline; 2787 } 2788 // FALLTHROUGH 2789 case NL: 2790 case CAR: 2791 case K_KENTER: 2792 beginline(BL_WHITE | BL_FIX); 2793 // FALLTHROUGH 2794 2795 case 't': scroll_cursor_top(0, TRUE); 2796 redraw_later(VALID); 2797 set_fraction(curwin); 2798 break; 2799 2800 // "z." and "zz": put cursor in middle of screen 2801 case '.': beginline(BL_WHITE | BL_FIX); 2802 // FALLTHROUGH 2803 2804 case 'z': scroll_cursor_halfway(TRUE); 2805 redraw_later(VALID); 2806 set_fraction(curwin); 2807 break; 2808 2809 // "z^", "z-" and "zb": put cursor at bottom of screen 2810 case '^': // Strange Vi behavior: <count>z^ finds line at top of window 2811 // when <count> is at bottom of window, and puts that one at 2812 // bottom of window. 2813 if (cap->count0 != 0) 2814 { 2815 scroll_cursor_bot(0, TRUE); 2816 curwin->w_cursor.lnum = curwin->w_topline; 2817 } 2818 else if (curwin->w_topline == 1) 2819 curwin->w_cursor.lnum = 1; 2820 else 2821 curwin->w_cursor.lnum = curwin->w_topline - 1; 2822 // FALLTHROUGH 2823 case '-': 2824 beginline(BL_WHITE | BL_FIX); 2825 // FALLTHROUGH 2826 2827 case 'b': scroll_cursor_bot(0, TRUE); 2828 redraw_later(VALID); 2829 set_fraction(curwin); 2830 break; 2831 2832 // "zH" - scroll screen right half-page 2833 case 'H': 2834 cap->count1 *= curwin->w_width / 2; 2835 // FALLTHROUGH 2836 2837 // "zh" - scroll screen to the right 2838 case 'h': 2839 case K_LEFT: 2840 if (!curwin->w_p_wrap) 2841 { 2842 if ((colnr_T)cap->count1 > curwin->w_leftcol) 2843 curwin->w_leftcol = 0; 2844 else 2845 curwin->w_leftcol -= (colnr_T)cap->count1; 2846 leftcol_changed(); 2847 } 2848 break; 2849 2850 // "zL" - scroll screen left half-page 2851 case 'L': cap->count1 *= curwin->w_width / 2; 2852 // FALLTHROUGH 2853 2854 // "zl" - scroll screen to the left 2855 case 'l': 2856 case K_RIGHT: 2857 if (!curwin->w_p_wrap) 2858 { 2859 // scroll the window left 2860 curwin->w_leftcol += (colnr_T)cap->count1; 2861 leftcol_changed(); 2862 } 2863 break; 2864 2865 // "zs" - scroll screen, cursor at the start 2866 case 's': if (!curwin->w_p_wrap) 2867 { 2868 #ifdef FEAT_FOLDING 2869 if (hasFolding(curwin->w_cursor.lnum, NULL, NULL)) 2870 col = 0; // like the cursor is in col 0 2871 else 2872 #endif 2873 getvcol(curwin, &curwin->w_cursor, &col, NULL, NULL); 2874 if ((long)col > siso) 2875 col -= siso; 2876 else 2877 col = 0; 2878 if (curwin->w_leftcol != col) 2879 { 2880 curwin->w_leftcol = col; 2881 redraw_later(NOT_VALID); 2882 } 2883 } 2884 break; 2885 2886 // "ze" - scroll screen, cursor at the end 2887 case 'e': if (!curwin->w_p_wrap) 2888 { 2889 #ifdef FEAT_FOLDING 2890 if (hasFolding(curwin->w_cursor.lnum, NULL, NULL)) 2891 col = 0; // like the cursor is in col 0 2892 else 2893 #endif 2894 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &col); 2895 n = curwin->w_width - curwin_col_off(); 2896 if ((long)col + siso < n) 2897 col = 0; 2898 else 2899 col = col + siso - n + 1; 2900 if (curwin->w_leftcol != col) 2901 { 2902 curwin->w_leftcol = col; 2903 redraw_later(NOT_VALID); 2904 } 2905 } 2906 break; 2907 2908 #ifdef FEAT_FOLDING 2909 // "zF": create fold command 2910 // "zf": create fold operator 2911 case 'F': 2912 case 'f': if (foldManualAllowed(TRUE)) 2913 { 2914 cap->nchar = 'f'; 2915 nv_operator(cap); 2916 curwin->w_p_fen = TRUE; 2917 2918 // "zF" is like "zfzf" 2919 if (nchar == 'F' && cap->oap->op_type == OP_FOLD) 2920 { 2921 nv_operator(cap); 2922 finish_op = TRUE; 2923 } 2924 } 2925 else 2926 clearopbeep(cap->oap); 2927 break; 2928 2929 // "zd": delete fold at cursor 2930 // "zD": delete fold at cursor recursively 2931 case 'd': 2932 case 'D': if (foldManualAllowed(FALSE)) 2933 { 2934 if (VIsual_active) 2935 nv_operator(cap); 2936 else 2937 deleteFold(curwin->w_cursor.lnum, 2938 curwin->w_cursor.lnum, nchar == 'D', FALSE); 2939 } 2940 break; 2941 2942 // "zE": erase all folds 2943 case 'E': if (foldmethodIsManual(curwin)) 2944 { 2945 clearFolding(curwin); 2946 changed_window_setting(); 2947 } 2948 else if (foldmethodIsMarker(curwin)) 2949 deleteFold((linenr_T)1, curbuf->b_ml.ml_line_count, 2950 TRUE, FALSE); 2951 else 2952 emsg(_("E352: Cannot erase folds with current 'foldmethod'")); 2953 break; 2954 2955 // "zn": fold none: reset 'foldenable' 2956 case 'n': curwin->w_p_fen = FALSE; 2957 break; 2958 2959 // "zN": fold Normal: set 'foldenable' 2960 case 'N': curwin->w_p_fen = TRUE; 2961 break; 2962 2963 // "zi": invert folding: toggle 'foldenable' 2964 case 'i': curwin->w_p_fen = !curwin->w_p_fen; 2965 break; 2966 2967 // "za": open closed fold or close open fold at cursor 2968 case 'a': if (hasFolding(curwin->w_cursor.lnum, NULL, NULL)) 2969 openFold(curwin->w_cursor.lnum, cap->count1); 2970 else 2971 { 2972 closeFold(curwin->w_cursor.lnum, cap->count1); 2973 curwin->w_p_fen = TRUE; 2974 } 2975 break; 2976 2977 // "zA": open fold at cursor recursively 2978 case 'A': if (hasFolding(curwin->w_cursor.lnum, NULL, NULL)) 2979 openFoldRecurse(curwin->w_cursor.lnum); 2980 else 2981 { 2982 closeFoldRecurse(curwin->w_cursor.lnum); 2983 curwin->w_p_fen = TRUE; 2984 } 2985 break; 2986 2987 // "zo": open fold at cursor or Visual area 2988 case 'o': if (VIsual_active) 2989 nv_operator(cap); 2990 else 2991 openFold(curwin->w_cursor.lnum, cap->count1); 2992 break; 2993 2994 // "zO": open fold recursively 2995 case 'O': if (VIsual_active) 2996 nv_operator(cap); 2997 else 2998 openFoldRecurse(curwin->w_cursor.lnum); 2999 break; 3000 3001 // "zc": close fold at cursor or Visual area 3002 case 'c': if (VIsual_active) 3003 nv_operator(cap); 3004 else 3005 closeFold(curwin->w_cursor.lnum, cap->count1); 3006 curwin->w_p_fen = TRUE; 3007 break; 3008 3009 // "zC": close fold recursively 3010 case 'C': if (VIsual_active) 3011 nv_operator(cap); 3012 else 3013 closeFoldRecurse(curwin->w_cursor.lnum); 3014 curwin->w_p_fen = TRUE; 3015 break; 3016 3017 // "zv": open folds at the cursor 3018 case 'v': foldOpenCursor(); 3019 break; 3020 3021 // "zx": re-apply 'foldlevel' and open folds at the cursor 3022 case 'x': curwin->w_p_fen = TRUE; 3023 curwin->w_foldinvalid = TRUE; // recompute folds 3024 newFoldLevel(); // update right now 3025 foldOpenCursor(); 3026 break; 3027 3028 // "zX": undo manual opens/closes, re-apply 'foldlevel' 3029 case 'X': curwin->w_p_fen = TRUE; 3030 curwin->w_foldinvalid = TRUE; // recompute folds 3031 old_fdl = -1; // force an update 3032 break; 3033 3034 // "zm": fold more 3035 case 'm': if (curwin->w_p_fdl > 0) 3036 { 3037 curwin->w_p_fdl -= cap->count1; 3038 if (curwin->w_p_fdl < 0) 3039 curwin->w_p_fdl = 0; 3040 } 3041 old_fdl = -1; // force an update 3042 curwin->w_p_fen = TRUE; 3043 break; 3044 3045 // "zM": close all folds 3046 case 'M': curwin->w_p_fdl = 0; 3047 old_fdl = -1; // force an update 3048 curwin->w_p_fen = TRUE; 3049 break; 3050 3051 // "zr": reduce folding 3052 case 'r': curwin->w_p_fdl += cap->count1; 3053 { 3054 int d = getDeepestNesting(); 3055 3056 if (curwin->w_p_fdl >= d) 3057 curwin->w_p_fdl = d; 3058 } 3059 break; 3060 3061 // "zR": open all folds 3062 case 'R': curwin->w_p_fdl = getDeepestNesting(); 3063 old_fdl = -1; // force an update 3064 break; 3065 3066 case 'j': // "zj" move to next fold downwards 3067 case 'k': // "zk" move to next fold upwards 3068 if (foldMoveTo(TRUE, nchar == 'j' ? FORWARD : BACKWARD, 3069 cap->count1) == FAIL) 3070 clearopbeep(cap->oap); 3071 break; 3072 3073 #endif // FEAT_FOLDING 3074 3075 #ifdef FEAT_SPELL 3076 case 'u': // "zug" and "zuw": undo "zg" and "zw" 3077 ++no_mapping; 3078 ++allow_keys; // no mapping for nchar, but allow key codes 3079 nchar = plain_vgetc(); 3080 LANGMAP_ADJUST(nchar, TRUE); 3081 --no_mapping; 3082 --allow_keys; 3083 #ifdef FEAT_CMDL_INFO 3084 (void)add_to_showcmd(nchar); 3085 #endif 3086 if (vim_strchr((char_u *)"gGwW", nchar) == NULL) 3087 { 3088 clearopbeep(cap->oap); 3089 break; 3090 } 3091 undo = TRUE; 3092 // FALLTHROUGH 3093 3094 case 'g': // "zg": add good word to word list 3095 case 'w': // "zw": add wrong word to word list 3096 case 'G': // "zG": add good word to temp word list 3097 case 'W': // "zW": add wrong word to temp word list 3098 { 3099 char_u *ptr = NULL; 3100 int len; 3101 3102 if (checkclearop(cap->oap)) 3103 break; 3104 if (VIsual_active && get_visual_text(cap, &ptr, &len) 3105 == FAIL) 3106 return; 3107 if (ptr == NULL) 3108 { 3109 pos_T pos = curwin->w_cursor; 3110 3111 // Find bad word under the cursor. When 'spell' is 3112 // off this fails and find_ident_under_cursor() is 3113 // used below. 3114 emsg_off++; 3115 len = spell_move_to(curwin, FORWARD, TRUE, TRUE, NULL); 3116 emsg_off--; 3117 if (len != 0 && curwin->w_cursor.col <= pos.col) 3118 ptr = ml_get_pos(&curwin->w_cursor); 3119 curwin->w_cursor = pos; 3120 } 3121 3122 if (ptr == NULL && (len = find_ident_under_cursor(&ptr, 3123 FIND_IDENT)) == 0) 3124 return; 3125 spell_add_word(ptr, len, nchar == 'w' || nchar == 'W' 3126 ? SPELL_ADD_BAD : SPELL_ADD_GOOD, 3127 (nchar == 'G' || nchar == 'W') 3128 ? 0 : (int)cap->count1, 3129 undo); 3130 } 3131 break; 3132 3133 case '=': // "z=": suggestions for a badly spelled word 3134 if (!checkclearop(cap->oap)) 3135 spell_suggest((int)cap->count0); 3136 break; 3137 #endif 3138 3139 default: clearopbeep(cap->oap); 3140 } 3141 3142 #ifdef FEAT_FOLDING 3143 // Redraw when 'foldenable' changed 3144 if (old_fen != curwin->w_p_fen) 3145 { 3146 # ifdef FEAT_DIFF 3147 win_T *wp; 3148 3149 if (foldmethodIsDiff(curwin) && curwin->w_p_scb) 3150 { 3151 // Adjust 'foldenable' in diff-synced windows. 3152 FOR_ALL_WINDOWS(wp) 3153 { 3154 if (wp != curwin && foldmethodIsDiff(wp) && wp->w_p_scb) 3155 { 3156 wp->w_p_fen = curwin->w_p_fen; 3157 changed_window_setting_win(wp); 3158 } 3159 } 3160 } 3161 # endif 3162 changed_window_setting(); 3163 } 3164 3165 // Redraw when 'foldlevel' changed. 3166 if (old_fdl != curwin->w_p_fdl) 3167 newFoldLevel(); 3168 #endif 3169 } 3170 3171 #ifdef FEAT_GUI 3172 /* 3173 * Vertical scrollbar movement. 3174 */ 3175 static void 3176 nv_ver_scrollbar(cmdarg_T *cap) 3177 { 3178 if (cap->oap->op_type != OP_NOP) 3179 clearopbeep(cap->oap); 3180 3181 // Even if an operator was pending, we still want to scroll 3182 gui_do_scroll(); 3183 } 3184 3185 /* 3186 * Horizontal scrollbar movement. 3187 */ 3188 static void 3189 nv_hor_scrollbar(cmdarg_T *cap) 3190 { 3191 if (cap->oap->op_type != OP_NOP) 3192 clearopbeep(cap->oap); 3193 3194 // Even if an operator was pending, we still want to scroll 3195 gui_do_horiz_scroll(scrollbar_value, FALSE); 3196 } 3197 #endif 3198 3199 #if defined(FEAT_GUI_TABLINE) || defined(PROTO) 3200 /* 3201 * Click in GUI tab. 3202 */ 3203 static void 3204 nv_tabline(cmdarg_T *cap) 3205 { 3206 if (cap->oap->op_type != OP_NOP) 3207 clearopbeep(cap->oap); 3208 3209 // Even if an operator was pending, we still want to jump tabs. 3210 goto_tabpage(current_tab); 3211 } 3212 3213 /* 3214 * Selected item in tab line menu. 3215 */ 3216 static void 3217 nv_tabmenu(cmdarg_T *cap) 3218 { 3219 if (cap->oap->op_type != OP_NOP) 3220 clearopbeep(cap->oap); 3221 3222 // Even if an operator was pending, we still want to jump tabs. 3223 handle_tabmenu(); 3224 } 3225 3226 /* 3227 * Handle selecting an item of the GUI tab line menu. 3228 * Used in Normal and Insert mode. 3229 */ 3230 void 3231 handle_tabmenu(void) 3232 { 3233 switch (current_tabmenu) 3234 { 3235 case TABLINE_MENU_CLOSE: 3236 if (current_tab == 0) 3237 do_cmdline_cmd((char_u *)"tabclose"); 3238 else 3239 { 3240 vim_snprintf((char *)IObuff, IOSIZE, "tabclose %d", 3241 current_tab); 3242 do_cmdline_cmd(IObuff); 3243 } 3244 break; 3245 3246 case TABLINE_MENU_NEW: 3247 if (current_tab == 0) 3248 do_cmdline_cmd((char_u *)"$tabnew"); 3249 else 3250 { 3251 vim_snprintf((char *)IObuff, IOSIZE, "%dtabnew", 3252 current_tab - 1); 3253 do_cmdline_cmd(IObuff); 3254 } 3255 break; 3256 3257 case TABLINE_MENU_OPEN: 3258 if (current_tab == 0) 3259 do_cmdline_cmd((char_u *)"browse $tabnew"); 3260 else 3261 { 3262 vim_snprintf((char *)IObuff, IOSIZE, "browse %dtabnew", 3263 current_tab - 1); 3264 do_cmdline_cmd(IObuff); 3265 } 3266 break; 3267 } 3268 } 3269 #endif 3270 3271 /* 3272 * "Q" command. 3273 */ 3274 static void 3275 nv_exmode(cmdarg_T *cap) 3276 { 3277 /* 3278 * Ignore 'Q' in Visual mode, just give a beep. 3279 */ 3280 if (VIsual_active) 3281 vim_beep(BO_EX); 3282 else if (!checkclearop(cap->oap)) 3283 do_exmode(FALSE); 3284 } 3285 3286 /* 3287 * Handle a ":" command. 3288 */ 3289 static void 3290 nv_colon(cmdarg_T *cap) 3291 { 3292 int old_p_im; 3293 int cmd_result; 3294 3295 if (VIsual_active) 3296 nv_operator(cap); 3297 else 3298 { 3299 if (cap->oap->op_type != OP_NOP) 3300 { 3301 // Using ":" as a movement is characterwise exclusive. 3302 cap->oap->motion_type = MCHAR; 3303 cap->oap->inclusive = FALSE; 3304 } 3305 else if (cap->count0) 3306 { 3307 // translate "count:" into ":.,.+(count - 1)" 3308 stuffcharReadbuff('.'); 3309 if (cap->count0 > 1) 3310 { 3311 stuffReadbuff((char_u *)",.+"); 3312 stuffnumReadbuff((long)cap->count0 - 1L); 3313 } 3314 } 3315 3316 // When typing, don't type below an old message 3317 if (KeyTyped) 3318 compute_cmdrow(); 3319 3320 old_p_im = p_im; 3321 3322 // get a command line and execute it 3323 cmd_result = do_cmdline(NULL, getexline, NULL, 3324 cap->oap->op_type != OP_NOP ? DOCMD_KEEPLINE : 0); 3325 3326 // If 'insertmode' changed, enter or exit Insert mode 3327 if (p_im != old_p_im) 3328 { 3329 if (p_im) 3330 restart_edit = 'i'; 3331 else 3332 restart_edit = 0; 3333 } 3334 3335 if (cmd_result == FAIL) 3336 // The Ex command failed, do not execute the operator. 3337 clearop(cap->oap); 3338 else if (cap->oap->op_type != OP_NOP 3339 && (cap->oap->start.lnum > curbuf->b_ml.ml_line_count 3340 || cap->oap->start.col > 3341 (colnr_T)STRLEN(ml_get(cap->oap->start.lnum)) 3342 || did_emsg 3343 )) 3344 // The start of the operator has become invalid by the Ex command. 3345 clearopbeep(cap->oap); 3346 } 3347 } 3348 3349 /* 3350 * Handle CTRL-G command. 3351 */ 3352 static void 3353 nv_ctrlg(cmdarg_T *cap) 3354 { 3355 if (VIsual_active) // toggle Selection/Visual mode 3356 { 3357 VIsual_select = !VIsual_select; 3358 showmode(); 3359 } 3360 else if (!checkclearop(cap->oap)) 3361 // print full name if count given or :cd used 3362 fileinfo((int)cap->count0, FALSE, TRUE); 3363 } 3364 3365 /* 3366 * Handle CTRL-H <Backspace> command. 3367 */ 3368 static void 3369 nv_ctrlh(cmdarg_T *cap) 3370 { 3371 if (VIsual_active && VIsual_select) 3372 { 3373 cap->cmdchar = 'x'; // BS key behaves like 'x' in Select mode 3374 v_visop(cap); 3375 } 3376 else 3377 nv_left(cap); 3378 } 3379 3380 /* 3381 * CTRL-L: clear screen and redraw. 3382 */ 3383 static void 3384 nv_clear(cmdarg_T *cap) 3385 { 3386 if (!checkclearop(cap->oap)) 3387 { 3388 #ifdef FEAT_SYN_HL 3389 // Clear all syntax states to force resyncing. 3390 syn_stack_free_all(curwin->w_s); 3391 # ifdef FEAT_RELTIME 3392 { 3393 win_T *wp; 3394 3395 FOR_ALL_WINDOWS(wp) 3396 wp->w_s->b_syn_slow = FALSE; 3397 } 3398 # endif 3399 #endif 3400 redraw_later(CLEAR); 3401 #if defined(MSWIN) && (!defined(FEAT_GUI_MSWIN) || defined(VIMDLL)) 3402 # ifdef VIMDLL 3403 if (!gui.in_use) 3404 # endif 3405 resize_console_buf(); 3406 #endif 3407 } 3408 } 3409 3410 /* 3411 * CTRL-O: In Select mode: switch to Visual mode for one command. 3412 * Otherwise: Go to older pcmark. 3413 */ 3414 static void 3415 nv_ctrlo(cmdarg_T *cap) 3416 { 3417 if (VIsual_active && VIsual_select) 3418 { 3419 VIsual_select = FALSE; 3420 showmode(); 3421 restart_VIsual_select = 2; // restart Select mode later 3422 } 3423 else 3424 { 3425 cap->count1 = -cap->count1; 3426 nv_pcmark(cap); 3427 } 3428 } 3429 3430 /* 3431 * CTRL-^ command, short for ":e #". Works even when the alternate buffer is 3432 * not named. 3433 */ 3434 static void 3435 nv_hat(cmdarg_T *cap) 3436 { 3437 if (!checkclearopq(cap->oap)) 3438 (void)buflist_getfile((int)cap->count0, (linenr_T)0, 3439 GETF_SETMARK|GETF_ALT, FALSE); 3440 } 3441 3442 /* 3443 * "Z" commands. 3444 */ 3445 static void 3446 nv_Zet(cmdarg_T *cap) 3447 { 3448 if (!checkclearopq(cap->oap)) 3449 { 3450 switch (cap->nchar) 3451 { 3452 // "ZZ": equivalent to ":x". 3453 case 'Z': do_cmdline_cmd((char_u *)"x"); 3454 break; 3455 3456 // "ZQ": equivalent to ":q!" (Elvis compatible). 3457 case 'Q': do_cmdline_cmd((char_u *)"q!"); 3458 break; 3459 3460 default: clearopbeep(cap->oap); 3461 } 3462 } 3463 } 3464 3465 /* 3466 * Call nv_ident() as if "c1" was used, with "c2" as next character. 3467 */ 3468 void 3469 do_nv_ident(int c1, int c2) 3470 { 3471 oparg_T oa; 3472 cmdarg_T ca; 3473 3474 clear_oparg(&oa); 3475 CLEAR_FIELD(ca); 3476 ca.oap = &oa; 3477 ca.cmdchar = c1; 3478 ca.nchar = c2; 3479 nv_ident(&ca); 3480 } 3481 3482 /* 3483 * Handle the commands that use the word under the cursor. 3484 * [g] CTRL-] :ta to current identifier 3485 * [g] 'K' run program for current identifier 3486 * [g] '*' / to current identifier or string 3487 * [g] '#' ? to current identifier or string 3488 * g ']' :tselect for current identifier 3489 */ 3490 static void 3491 nv_ident(cmdarg_T *cap) 3492 { 3493 char_u *ptr = NULL; 3494 char_u *buf; 3495 unsigned buflen; 3496 char_u *newbuf; 3497 char_u *p; 3498 char_u *kp; // value of 'keywordprg' 3499 int kp_help; // 'keywordprg' is ":he" 3500 int kp_ex; // 'keywordprg' starts with ":" 3501 int n = 0; // init for GCC 3502 int cmdchar; 3503 int g_cmd; // "g" command 3504 int tag_cmd = FALSE; 3505 char_u *aux_ptr; 3506 int isman; 3507 int isman_s; 3508 3509 if (cap->cmdchar == 'g') // "g*", "g#", "g]" and "gCTRL-]" 3510 { 3511 cmdchar = cap->nchar; 3512 g_cmd = TRUE; 3513 } 3514 else 3515 { 3516 cmdchar = cap->cmdchar; 3517 g_cmd = FALSE; 3518 } 3519 3520 if (cmdchar == POUND) // the pound sign, '#' for English keyboards 3521 cmdchar = '#'; 3522 3523 /* 3524 * The "]", "CTRL-]" and "K" commands accept an argument in Visual mode. 3525 */ 3526 if (cmdchar == ']' || cmdchar == Ctrl_RSB || cmdchar == 'K') 3527 { 3528 if (VIsual_active && get_visual_text(cap, &ptr, &n) == FAIL) 3529 return; 3530 if (checkclearopq(cap->oap)) 3531 return; 3532 } 3533 3534 if (ptr == NULL && (n = find_ident_under_cursor(&ptr, 3535 (cmdchar == '*' || cmdchar == '#') 3536 ? FIND_IDENT|FIND_STRING : FIND_IDENT)) == 0) 3537 { 3538 clearop(cap->oap); 3539 return; 3540 } 3541 3542 // Allocate buffer to put the command in. Inserting backslashes can 3543 // double the length of the word. p_kp / curbuf->b_p_kp could be added 3544 // and some numbers. 3545 kp = (*curbuf->b_p_kp == NUL ? p_kp : curbuf->b_p_kp); 3546 kp_help = (*kp == NUL || STRCMP(kp, ":he") == 0 3547 || STRCMP(kp, ":help") == 0); 3548 if (kp_help && *skipwhite(ptr) == NUL) 3549 { 3550 emsg(_(e_noident)); // found white space only 3551 return; 3552 } 3553 kp_ex = (*kp == ':'); 3554 buflen = (unsigned)(n * 2 + 30 + STRLEN(kp)); 3555 buf = alloc(buflen); 3556 if (buf == NULL) 3557 return; 3558 buf[0] = NUL; 3559 3560 switch (cmdchar) 3561 { 3562 case '*': 3563 case '#': 3564 /* 3565 * Put cursor at start of word, makes search skip the word 3566 * under the cursor. 3567 * Call setpcmark() first, so "*``" puts the cursor back where 3568 * it was. 3569 */ 3570 setpcmark(); 3571 curwin->w_cursor.col = (colnr_T) (ptr - ml_get_curline()); 3572 3573 if (!g_cmd && vim_iswordp(ptr)) 3574 STRCPY(buf, "\\<"); 3575 no_smartcase = TRUE; // don't use 'smartcase' now 3576 break; 3577 3578 case 'K': 3579 if (kp_help) 3580 STRCPY(buf, "he! "); 3581 else if (kp_ex) 3582 { 3583 if (cap->count0 != 0) 3584 vim_snprintf((char *)buf, buflen, "%s %ld", 3585 kp, cap->count0); 3586 else 3587 STRCPY(buf, kp); 3588 STRCAT(buf, " "); 3589 } 3590 else 3591 { 3592 // An external command will probably use an argument starting 3593 // with "-" as an option. To avoid trouble we skip the "-". 3594 while (*ptr == '-' && n > 0) 3595 { 3596 ++ptr; 3597 --n; 3598 } 3599 if (n == 0) 3600 { 3601 emsg(_(e_noident)); // found dashes only 3602 vim_free(buf); 3603 return; 3604 } 3605 3606 // When a count is given, turn it into a range. Is this 3607 // really what we want? 3608 isman = (STRCMP(kp, "man") == 0); 3609 isman_s = (STRCMP(kp, "man -s") == 0); 3610 if (cap->count0 != 0 && !(isman || isman_s)) 3611 sprintf((char *)buf, ".,.+%ld", cap->count0 - 1); 3612 3613 STRCAT(buf, "! "); 3614 if (cap->count0 == 0 && isman_s) 3615 STRCAT(buf, "man"); 3616 else 3617 STRCAT(buf, kp); 3618 STRCAT(buf, " "); 3619 if (cap->count0 != 0 && (isman || isman_s)) 3620 { 3621 sprintf((char *)buf + STRLEN(buf), "%ld", cap->count0); 3622 STRCAT(buf, " "); 3623 } 3624 } 3625 break; 3626 3627 case ']': 3628 tag_cmd = TRUE; 3629 #ifdef FEAT_CSCOPE 3630 if (p_cst) 3631 STRCPY(buf, "cstag "); 3632 else 3633 #endif 3634 STRCPY(buf, "ts "); 3635 break; 3636 3637 default: 3638 tag_cmd = TRUE; 3639 if (curbuf->b_help) 3640 STRCPY(buf, "he! "); 3641 else 3642 { 3643 if (g_cmd) 3644 STRCPY(buf, "tj "); 3645 else 3646 sprintf((char *)buf, "%ldta ", cap->count0); 3647 } 3648 } 3649 3650 /* 3651 * Now grab the chars in the identifier 3652 */ 3653 if (cmdchar == 'K' && !kp_help) 3654 { 3655 ptr = vim_strnsave(ptr, n); 3656 if (kp_ex) 3657 // Escape the argument properly for an Ex command 3658 p = vim_strsave_fnameescape(ptr, FALSE); 3659 else 3660 // Escape the argument properly for a shell command 3661 p = vim_strsave_shellescape(ptr, TRUE, TRUE); 3662 vim_free(ptr); 3663 if (p == NULL) 3664 { 3665 vim_free(buf); 3666 return; 3667 } 3668 newbuf = vim_realloc(buf, STRLEN(buf) + STRLEN(p) + 1); 3669 if (newbuf == NULL) 3670 { 3671 vim_free(buf); 3672 vim_free(p); 3673 return; 3674 } 3675 buf = newbuf; 3676 STRCAT(buf, p); 3677 vim_free(p); 3678 } 3679 else 3680 { 3681 if (cmdchar == '*') 3682 aux_ptr = (char_u *)(p_magic ? "/.*~[^$\\" : "/^$\\"); 3683 else if (cmdchar == '#') 3684 aux_ptr = (char_u *)(p_magic ? "/?.*~[^$\\" : "/?^$\\"); 3685 else if (tag_cmd) 3686 { 3687 if (curbuf->b_help) 3688 // ":help" handles unescaped argument 3689 aux_ptr = (char_u *)""; 3690 else 3691 aux_ptr = (char_u *)"\\|\"\n["; 3692 } 3693 else 3694 aux_ptr = (char_u *)"\\|\"\n*?["; 3695 3696 p = buf + STRLEN(buf); 3697 while (n-- > 0) 3698 { 3699 // put a backslash before \ and some others 3700 if (vim_strchr(aux_ptr, *ptr) != NULL) 3701 *p++ = '\\'; 3702 // When current byte is a part of multibyte character, copy all 3703 // bytes of that character. 3704 if (has_mbyte) 3705 { 3706 int i; 3707 int len = (*mb_ptr2len)(ptr) - 1; 3708 3709 for (i = 0; i < len && n >= 1; ++i, --n) 3710 *p++ = *ptr++; 3711 } 3712 *p++ = *ptr++; 3713 } 3714 *p = NUL; 3715 } 3716 3717 /* 3718 * Execute the command. 3719 */ 3720 if (cmdchar == '*' || cmdchar == '#') 3721 { 3722 if (!g_cmd && (has_mbyte 3723 ? vim_iswordp(mb_prevptr(ml_get_curline(), ptr)) 3724 : vim_iswordc(ptr[-1]))) 3725 STRCAT(buf, "\\>"); 3726 3727 // put pattern in search history 3728 init_history(); 3729 add_to_history(HIST_SEARCH, buf, TRUE, NUL); 3730 3731 (void)normal_search(cap, cmdchar == '*' ? '/' : '?', buf, 0, NULL); 3732 } 3733 else 3734 { 3735 g_tag_at_cursor = TRUE; 3736 do_cmdline_cmd(buf); 3737 g_tag_at_cursor = FALSE; 3738 } 3739 3740 vim_free(buf); 3741 } 3742 3743 /* 3744 * Get visually selected text, within one line only. 3745 * Returns FAIL if more than one line selected. 3746 */ 3747 int 3748 get_visual_text( 3749 cmdarg_T *cap, 3750 char_u **pp, // return: start of selected text 3751 int *lenp) // return: length of selected text 3752 { 3753 if (VIsual_mode != 'V') 3754 unadjust_for_sel(); 3755 if (VIsual.lnum != curwin->w_cursor.lnum) 3756 { 3757 if (cap != NULL) 3758 clearopbeep(cap->oap); 3759 return FAIL; 3760 } 3761 if (VIsual_mode == 'V') 3762 { 3763 *pp = ml_get_curline(); 3764 *lenp = (int)STRLEN(*pp); 3765 } 3766 else 3767 { 3768 if (LT_POS(curwin->w_cursor, VIsual)) 3769 { 3770 *pp = ml_get_pos(&curwin->w_cursor); 3771 *lenp = VIsual.col - curwin->w_cursor.col + 1; 3772 } 3773 else 3774 { 3775 *pp = ml_get_pos(&VIsual); 3776 *lenp = curwin->w_cursor.col - VIsual.col + 1; 3777 } 3778 if (has_mbyte) 3779 // Correct the length to include the whole last character. 3780 *lenp += (*mb_ptr2len)(*pp + (*lenp - 1)) - 1; 3781 } 3782 reset_VIsual_and_resel(); 3783 return OK; 3784 } 3785 3786 /* 3787 * CTRL-T: backwards in tag stack 3788 */ 3789 static void 3790 nv_tagpop(cmdarg_T *cap) 3791 { 3792 if (!checkclearopq(cap->oap)) 3793 do_tag((char_u *)"", DT_POP, (int)cap->count1, FALSE, TRUE); 3794 } 3795 3796 /* 3797 * Handle scrolling command 'H', 'L' and 'M'. 3798 */ 3799 static void 3800 nv_scroll(cmdarg_T *cap) 3801 { 3802 int used = 0; 3803 long n; 3804 #ifdef FEAT_FOLDING 3805 linenr_T lnum; 3806 #endif 3807 int half; 3808 3809 cap->oap->motion_type = MLINE; 3810 setpcmark(); 3811 3812 if (cap->cmdchar == 'L') 3813 { 3814 validate_botline(); // make sure curwin->w_botline is valid 3815 curwin->w_cursor.lnum = curwin->w_botline - 1; 3816 if (cap->count1 - 1 >= curwin->w_cursor.lnum) 3817 curwin->w_cursor.lnum = 1; 3818 else 3819 { 3820 #ifdef FEAT_FOLDING 3821 if (hasAnyFolding(curwin)) 3822 { 3823 // Count a fold for one screen line. 3824 for (n = cap->count1 - 1; n > 0 3825 && curwin->w_cursor.lnum > curwin->w_topline; --n) 3826 { 3827 (void)hasFolding(curwin->w_cursor.lnum, 3828 &curwin->w_cursor.lnum, NULL); 3829 --curwin->w_cursor.lnum; 3830 } 3831 } 3832 else 3833 #endif 3834 curwin->w_cursor.lnum -= cap->count1 - 1; 3835 } 3836 } 3837 else 3838 { 3839 if (cap->cmdchar == 'M') 3840 { 3841 #ifdef FEAT_DIFF 3842 // Don't count filler lines above the window. 3843 used -= diff_check_fill(curwin, curwin->w_topline) 3844 - curwin->w_topfill; 3845 #endif 3846 validate_botline(); // make sure w_empty_rows is valid 3847 half = (curwin->w_height - curwin->w_empty_rows + 1) / 2; 3848 for (n = 0; curwin->w_topline + n < curbuf->b_ml.ml_line_count; ++n) 3849 { 3850 #ifdef FEAT_DIFF 3851 // Count half he number of filler lines to be "below this 3852 // line" and half to be "above the next line". 3853 if (n > 0 && used + diff_check_fill(curwin, curwin->w_topline 3854 + n) / 2 >= half) 3855 { 3856 --n; 3857 break; 3858 } 3859 #endif 3860 used += plines(curwin->w_topline + n); 3861 if (used >= half) 3862 break; 3863 #ifdef FEAT_FOLDING 3864 if (hasFolding(curwin->w_topline + n, NULL, &lnum)) 3865 n = lnum - curwin->w_topline; 3866 #endif 3867 } 3868 if (n > 0 && used > curwin->w_height) 3869 --n; 3870 } 3871 else // (cap->cmdchar == 'H') 3872 { 3873 n = cap->count1 - 1; 3874 #ifdef FEAT_FOLDING 3875 if (hasAnyFolding(curwin)) 3876 { 3877 // Count a fold for one screen line. 3878 lnum = curwin->w_topline; 3879 while (n-- > 0 && lnum < curwin->w_botline - 1) 3880 { 3881 (void)hasFolding(lnum, NULL, &lnum); 3882 ++lnum; 3883 } 3884 n = lnum - curwin->w_topline; 3885 } 3886 #endif 3887 } 3888 curwin->w_cursor.lnum = curwin->w_topline + n; 3889 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count) 3890 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count; 3891 } 3892 3893 // Correct for 'so', except when an operator is pending. 3894 if (cap->oap->op_type == OP_NOP) 3895 cursor_correct(); 3896 beginline(BL_SOL | BL_FIX); 3897 } 3898 3899 /* 3900 * Cursor right commands. 3901 */ 3902 static void 3903 nv_right(cmdarg_T *cap) 3904 { 3905 long n; 3906 int past_line; 3907 3908 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL)) 3909 { 3910 // <C-Right> and <S-Right> move a word or WORD right 3911 if (mod_mask & MOD_MASK_CTRL) 3912 cap->arg = TRUE; 3913 nv_wordcmd(cap); 3914 return; 3915 } 3916 3917 cap->oap->motion_type = MCHAR; 3918 cap->oap->inclusive = FALSE; 3919 past_line = (VIsual_active && *p_sel != 'o'); 3920 3921 /* 3922 * In virtual edit mode, there's no such thing as "past_line", as lines 3923 * are (theoretically) infinitely long. 3924 */ 3925 if (virtual_active()) 3926 past_line = 0; 3927 3928 for (n = cap->count1; n > 0; --n) 3929 { 3930 if ((!past_line && oneright() == FAIL) 3931 || (past_line && *ml_get_cursor() == NUL) 3932 ) 3933 { 3934 /* 3935 * <Space> wraps to next line if 'whichwrap' has 's'. 3936 * 'l' wraps to next line if 'whichwrap' has 'l'. 3937 * CURS_RIGHT wraps to next line if 'whichwrap' has '>'. 3938 */ 3939 if ( ((cap->cmdchar == ' ' 3940 && vim_strchr(p_ww, 's') != NULL) 3941 || (cap->cmdchar == 'l' 3942 && vim_strchr(p_ww, 'l') != NULL) 3943 || (cap->cmdchar == K_RIGHT 3944 && vim_strchr(p_ww, '>') != NULL)) 3945 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count) 3946 { 3947 // When deleting we also count the NL as a character. 3948 // Set cap->oap->inclusive when last char in the line is 3949 // included, move to next line after that 3950 if ( cap->oap->op_type != OP_NOP 3951 && !cap->oap->inclusive 3952 && !LINEEMPTY(curwin->w_cursor.lnum)) 3953 cap->oap->inclusive = TRUE; 3954 else 3955 { 3956 ++curwin->w_cursor.lnum; 3957 curwin->w_cursor.col = 0; 3958 curwin->w_cursor.coladd = 0; 3959 curwin->w_set_curswant = TRUE; 3960 cap->oap->inclusive = FALSE; 3961 } 3962 continue; 3963 } 3964 if (cap->oap->op_type == OP_NOP) 3965 { 3966 // Only beep and flush if not moved at all 3967 if (n == cap->count1) 3968 beep_flush(); 3969 } 3970 else 3971 { 3972 if (!LINEEMPTY(curwin->w_cursor.lnum)) 3973 cap->oap->inclusive = TRUE; 3974 } 3975 break; 3976 } 3977 else if (past_line) 3978 { 3979 curwin->w_set_curswant = TRUE; 3980 if (virtual_active()) 3981 oneright(); 3982 else 3983 { 3984 if (has_mbyte) 3985 curwin->w_cursor.col += (*mb_ptr2len)(ml_get_cursor()); 3986 else 3987 ++curwin->w_cursor.col; 3988 } 3989 } 3990 } 3991 #ifdef FEAT_FOLDING 3992 if (n != cap->count1 && (fdo_flags & FDO_HOR) && KeyTyped 3993 && cap->oap->op_type == OP_NOP) 3994 foldOpenCursor(); 3995 #endif 3996 } 3997 3998 /* 3999 * Cursor left commands. 4000 * 4001 * Returns TRUE when operator end should not be adjusted. 4002 */ 4003 static void 4004 nv_left(cmdarg_T *cap) 4005 { 4006 long n; 4007 4008 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL)) 4009 { 4010 // <C-Left> and <S-Left> move a word or WORD left 4011 if (mod_mask & MOD_MASK_CTRL) 4012 cap->arg = 1; 4013 nv_bck_word(cap); 4014 return; 4015 } 4016 4017 cap->oap->motion_type = MCHAR; 4018 cap->oap->inclusive = FALSE; 4019 for (n = cap->count1; n > 0; --n) 4020 { 4021 if (oneleft() == FAIL) 4022 { 4023 // <BS> and <Del> wrap to previous line if 'whichwrap' has 'b'. 4024 // 'h' wraps to previous line if 'whichwrap' has 'h'. 4025 // CURS_LEFT wraps to previous line if 'whichwrap' has '<'. 4026 if ( (((cap->cmdchar == K_BS 4027 || cap->cmdchar == Ctrl_H) 4028 && vim_strchr(p_ww, 'b') != NULL) 4029 || (cap->cmdchar == 'h' 4030 && vim_strchr(p_ww, 'h') != NULL) 4031 || (cap->cmdchar == K_LEFT 4032 && vim_strchr(p_ww, '<') != NULL)) 4033 && curwin->w_cursor.lnum > 1) 4034 { 4035 --(curwin->w_cursor.lnum); 4036 coladvance((colnr_T)MAXCOL); 4037 curwin->w_set_curswant = TRUE; 4038 4039 // When the NL before the first char has to be deleted we 4040 // put the cursor on the NUL after the previous line. 4041 // This is a very special case, be careful! 4042 // Don't adjust op_end now, otherwise it won't work. 4043 if ( (cap->oap->op_type == OP_DELETE 4044 || cap->oap->op_type == OP_CHANGE) 4045 && !LINEEMPTY(curwin->w_cursor.lnum)) 4046 { 4047 char_u *cp = ml_get_cursor(); 4048 4049 if (*cp != NUL) 4050 { 4051 if (has_mbyte) 4052 curwin->w_cursor.col += (*mb_ptr2len)(cp); 4053 else 4054 ++curwin->w_cursor.col; 4055 } 4056 cap->retval |= CA_NO_ADJ_OP_END; 4057 } 4058 continue; 4059 } 4060 // Only beep and flush if not moved at all 4061 else if (cap->oap->op_type == OP_NOP && n == cap->count1) 4062 beep_flush(); 4063 break; 4064 } 4065 } 4066 #ifdef FEAT_FOLDING 4067 if (n != cap->count1 && (fdo_flags & FDO_HOR) && KeyTyped 4068 && cap->oap->op_type == OP_NOP) 4069 foldOpenCursor(); 4070 #endif 4071 } 4072 4073 /* 4074 * Cursor up commands. 4075 * cap->arg is TRUE for "-": Move cursor to first non-blank. 4076 */ 4077 static void 4078 nv_up(cmdarg_T *cap) 4079 { 4080 if (mod_mask & MOD_MASK_SHIFT) 4081 { 4082 // <S-Up> is page up 4083 cap->arg = BACKWARD; 4084 nv_page(cap); 4085 } 4086 else 4087 { 4088 cap->oap->motion_type = MLINE; 4089 if (cursor_up(cap->count1, cap->oap->op_type == OP_NOP) == FAIL) 4090 clearopbeep(cap->oap); 4091 else if (cap->arg) 4092 beginline(BL_WHITE | BL_FIX); 4093 } 4094 } 4095 4096 /* 4097 * Cursor down commands. 4098 * cap->arg is TRUE for CR and "+": Move cursor to first non-blank. 4099 */ 4100 static void 4101 nv_down(cmdarg_T *cap) 4102 { 4103 if (mod_mask & MOD_MASK_SHIFT) 4104 { 4105 // <S-Down> is page down 4106 cap->arg = FORWARD; 4107 nv_page(cap); 4108 } 4109 #if defined(FEAT_QUICKFIX) 4110 // Quickfix window only: view the result under the cursor. 4111 else if (bt_quickfix(curbuf) && cap->cmdchar == CAR) 4112 qf_view_result(FALSE); 4113 #endif 4114 else 4115 { 4116 #ifdef FEAT_CMDWIN 4117 // In the cmdline window a <CR> executes the command. 4118 if (cmdwin_type != 0 && cap->cmdchar == CAR) 4119 cmdwin_result = CAR; 4120 else 4121 #endif 4122 #ifdef FEAT_JOB_CHANNEL 4123 // In a prompt buffer a <CR> in the last line invokes the callback. 4124 if (bt_prompt(curbuf) && cap->cmdchar == CAR 4125 && curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count) 4126 { 4127 invoke_prompt_callback(); 4128 if (restart_edit == 0) 4129 restart_edit = 'a'; 4130 } 4131 else 4132 #endif 4133 { 4134 cap->oap->motion_type = MLINE; 4135 if (cursor_down(cap->count1, cap->oap->op_type == OP_NOP) == FAIL) 4136 clearopbeep(cap->oap); 4137 else if (cap->arg) 4138 beginline(BL_WHITE | BL_FIX); 4139 } 4140 } 4141 } 4142 4143 #ifdef FEAT_SEARCHPATH 4144 /* 4145 * Grab the file name under the cursor and edit it. 4146 */ 4147 static void 4148 nv_gotofile(cmdarg_T *cap) 4149 { 4150 char_u *ptr; 4151 linenr_T lnum = -1; 4152 4153 if (text_locked()) 4154 { 4155 clearopbeep(cap->oap); 4156 text_locked_msg(); 4157 return; 4158 } 4159 if (curbuf_locked()) 4160 { 4161 clearop(cap->oap); 4162 return; 4163 } 4164 #ifdef FEAT_PROP_POPUP 4165 if (ERROR_IF_TERM_POPUP_WINDOW) 4166 return; 4167 #endif 4168 4169 ptr = grab_file_name(cap->count1, &lnum); 4170 4171 if (ptr != NULL) 4172 { 4173 // do autowrite if necessary 4174 if (curbufIsChanged() && curbuf->b_nwindows <= 1 && !buf_hide(curbuf)) 4175 (void)autowrite(curbuf, FALSE); 4176 setpcmark(); 4177 if (do_ecmd(0, ptr, NULL, NULL, ECMD_LAST, 4178 buf_hide(curbuf) ? ECMD_HIDE : 0, curwin) == OK 4179 && cap->nchar == 'F' && lnum >= 0) 4180 { 4181 curwin->w_cursor.lnum = lnum; 4182 check_cursor_lnum(); 4183 beginline(BL_SOL | BL_FIX); 4184 } 4185 vim_free(ptr); 4186 } 4187 else 4188 clearop(cap->oap); 4189 } 4190 #endif 4191 4192 /* 4193 * <End> command: to end of current line or last line. 4194 */ 4195 static void 4196 nv_end(cmdarg_T *cap) 4197 { 4198 if (cap->arg || (mod_mask & MOD_MASK_CTRL)) // CTRL-END = goto last line 4199 { 4200 cap->arg = TRUE; 4201 nv_goto(cap); 4202 cap->count1 = 1; // to end of current line 4203 } 4204 nv_dollar(cap); 4205 } 4206 4207 /* 4208 * Handle the "$" command. 4209 */ 4210 static void 4211 nv_dollar(cmdarg_T *cap) 4212 { 4213 cap->oap->motion_type = MCHAR; 4214 cap->oap->inclusive = TRUE; 4215 // In virtual mode when off the edge of a line and an operator 4216 // is pending (whew!) keep the cursor where it is. 4217 // Otherwise, send it to the end of the line. 4218 if (!virtual_active() || gchar_cursor() != NUL 4219 || cap->oap->op_type == OP_NOP) 4220 curwin->w_curswant = MAXCOL; // so we stay at the end 4221 if (cursor_down((long)(cap->count1 - 1), 4222 cap->oap->op_type == OP_NOP) == FAIL) 4223 clearopbeep(cap->oap); 4224 #ifdef FEAT_FOLDING 4225 else if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP) 4226 foldOpenCursor(); 4227 #endif 4228 } 4229 4230 /* 4231 * Implementation of '?' and '/' commands. 4232 * If cap->arg is TRUE don't set PC mark. 4233 */ 4234 static void 4235 nv_search(cmdarg_T *cap) 4236 { 4237 oparg_T *oap = cap->oap; 4238 pos_T save_cursor = curwin->w_cursor; 4239 4240 if (cap->cmdchar == '?' && cap->oap->op_type == OP_ROT13) 4241 { 4242 // Translate "g??" to "g?g?" 4243 cap->cmdchar = 'g'; 4244 cap->nchar = '?'; 4245 nv_operator(cap); 4246 return; 4247 } 4248 4249 // When using 'incsearch' the cursor may be moved to set a different search 4250 // start position. 4251 cap->searchbuf = getcmdline(cap->cmdchar, cap->count1, 0, TRUE); 4252 4253 if (cap->searchbuf == NULL) 4254 { 4255 clearop(oap); 4256 return; 4257 } 4258 4259 (void)normal_search(cap, cap->cmdchar, cap->searchbuf, 4260 (cap->arg || !EQUAL_POS(save_cursor, curwin->w_cursor)) 4261 ? 0 : SEARCH_MARK, NULL); 4262 } 4263 4264 /* 4265 * Handle "N" and "n" commands. 4266 * cap->arg is SEARCH_REV for "N", 0 for "n". 4267 */ 4268 static void 4269 nv_next(cmdarg_T *cap) 4270 { 4271 pos_T old = curwin->w_cursor; 4272 int wrapped = FALSE; 4273 int i = normal_search(cap, 0, NULL, SEARCH_MARK | cap->arg, &wrapped); 4274 4275 if (i == 1 && !wrapped && EQUAL_POS(old, curwin->w_cursor)) 4276 { 4277 // Avoid getting stuck on the current cursor position, which can 4278 // happen when an offset is given and the cursor is on the last char 4279 // in the buffer: Repeat with count + 1. 4280 cap->count1 += 1; 4281 (void)normal_search(cap, 0, NULL, SEARCH_MARK | cap->arg, NULL); 4282 cap->count1 -= 1; 4283 } 4284 } 4285 4286 /* 4287 * Search for "pat" in direction "dir" ('/' or '?', 0 for repeat). 4288 * Uses only cap->count1 and cap->oap from "cap". 4289 * Return 0 for failure, 1 for found, 2 for found and line offset added. 4290 */ 4291 static int 4292 normal_search( 4293 cmdarg_T *cap, 4294 int dir, 4295 char_u *pat, 4296 int opt, // extra flags for do_search() 4297 int *wrapped) 4298 { 4299 int i; 4300 searchit_arg_T sia; 4301 4302 cap->oap->motion_type = MCHAR; 4303 cap->oap->inclusive = FALSE; 4304 cap->oap->use_reg_one = TRUE; 4305 curwin->w_set_curswant = TRUE; 4306 4307 CLEAR_FIELD(sia); 4308 i = do_search(cap->oap, dir, dir, pat, cap->count1, 4309 opt | SEARCH_OPT | SEARCH_ECHO | SEARCH_MSG, &sia); 4310 if (wrapped != NULL) 4311 *wrapped = sia.sa_wrapped; 4312 if (i == 0) 4313 clearop(cap->oap); 4314 else 4315 { 4316 if (i == 2) 4317 cap->oap->motion_type = MLINE; 4318 curwin->w_cursor.coladd = 0; 4319 #ifdef FEAT_FOLDING 4320 if (cap->oap->op_type == OP_NOP && (fdo_flags & FDO_SEARCH) && KeyTyped) 4321 foldOpenCursor(); 4322 #endif 4323 } 4324 4325 // "/$" will put the cursor after the end of the line, may need to 4326 // correct that here 4327 check_cursor(); 4328 return i; 4329 } 4330 4331 /* 4332 * Character search commands. 4333 * cap->arg is BACKWARD for 'F' and 'T', FORWARD for 'f' and 't', TRUE for 4334 * ',' and FALSE for ';'. 4335 * cap->nchar is NUL for ',' and ';' (repeat the search) 4336 */ 4337 static void 4338 nv_csearch(cmdarg_T *cap) 4339 { 4340 int t_cmd; 4341 4342 if (cap->cmdchar == 't' || cap->cmdchar == 'T') 4343 t_cmd = TRUE; 4344 else 4345 t_cmd = FALSE; 4346 4347 cap->oap->motion_type = MCHAR; 4348 if (IS_SPECIAL(cap->nchar) || searchc(cap, t_cmd) == FAIL) 4349 clearopbeep(cap->oap); 4350 else 4351 { 4352 curwin->w_set_curswant = TRUE; 4353 // Include a Tab for "tx" and for "dfx". 4354 if (gchar_cursor() == TAB && virtual_active() && cap->arg == FORWARD 4355 && (t_cmd || cap->oap->op_type != OP_NOP)) 4356 { 4357 colnr_T scol, ecol; 4358 4359 getvcol(curwin, &curwin->w_cursor, &scol, NULL, &ecol); 4360 curwin->w_cursor.coladd = ecol - scol; 4361 } 4362 else 4363 curwin->w_cursor.coladd = 0; 4364 adjust_for_sel(cap); 4365 #ifdef FEAT_FOLDING 4366 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP) 4367 foldOpenCursor(); 4368 #endif 4369 } 4370 } 4371 4372 /* 4373 * "[" and "]" commands. 4374 * cap->arg is BACKWARD for "[" and FORWARD for "]". 4375 */ 4376 static void 4377 nv_brackets(cmdarg_T *cap) 4378 { 4379 pos_T new_pos = {0, 0, 0}; 4380 pos_T prev_pos; 4381 pos_T *pos = NULL; // init for GCC 4382 pos_T old_pos; // cursor position before command 4383 int flag; 4384 long n; 4385 int findc; 4386 int c; 4387 4388 cap->oap->motion_type = MCHAR; 4389 cap->oap->inclusive = FALSE; 4390 old_pos = curwin->w_cursor; 4391 curwin->w_cursor.coladd = 0; // TODO: don't do this for an error. 4392 4393 #ifdef FEAT_SEARCHPATH 4394 /* 4395 * "[f" or "]f" : Edit file under the cursor (same as "gf") 4396 */ 4397 if (cap->nchar == 'f') 4398 nv_gotofile(cap); 4399 else 4400 #endif 4401 4402 #ifdef FEAT_FIND_ID 4403 /* 4404 * Find the occurrence(s) of the identifier or define under cursor 4405 * in current and included files or jump to the first occurrence. 4406 * 4407 * search list jump 4408 * fwd bwd fwd bwd fwd bwd 4409 * identifier "]i" "[i" "]I" "[I" "]^I" "[^I" 4410 * define "]d" "[d" "]D" "[D" "]^D" "[^D" 4411 */ 4412 if (vim_strchr((char_u *) 4413 # ifdef EBCDIC 4414 "iI\005dD\067", 4415 # else 4416 "iI\011dD\004", 4417 # endif 4418 cap->nchar) != NULL) 4419 { 4420 char_u *ptr; 4421 int len; 4422 4423 if ((len = find_ident_under_cursor(&ptr, FIND_IDENT)) == 0) 4424 clearop(cap->oap); 4425 else 4426 { 4427 find_pattern_in_path(ptr, 0, len, TRUE, 4428 cap->count0 == 0 ? !isupper(cap->nchar) : FALSE, 4429 ((cap->nchar & 0xf) == ('d' & 0xf)) ? FIND_DEFINE : FIND_ANY, 4430 cap->count1, 4431 isupper(cap->nchar) ? ACTION_SHOW_ALL : 4432 islower(cap->nchar) ? ACTION_SHOW : ACTION_GOTO, 4433 cap->cmdchar == ']' ? curwin->w_cursor.lnum + 1 : (linenr_T)1, 4434 (linenr_T)MAXLNUM); 4435 curwin->w_set_curswant = TRUE; 4436 } 4437 } 4438 else 4439 #endif 4440 4441 /* 4442 * "[{", "[(", "]}" or "])": go to Nth unclosed '{', '(', '}' or ')' 4443 * "[#", "]#": go to start/end of Nth innermost #if..#endif construct. 4444 * "[/", "[*", "]/", "]*": go to Nth comment start/end. 4445 * "[m" or "]m" search for prev/next start of (Java) method. 4446 * "[M" or "]M" search for prev/next end of (Java) method. 4447 */ 4448 if ( (cap->cmdchar == '[' 4449 && vim_strchr((char_u *)"{(*/#mM", cap->nchar) != NULL) 4450 || (cap->cmdchar == ']' 4451 && vim_strchr((char_u *)"})*/#mM", cap->nchar) != NULL)) 4452 { 4453 if (cap->nchar == '*') 4454 cap->nchar = '/'; 4455 prev_pos.lnum = 0; 4456 if (cap->nchar == 'm' || cap->nchar == 'M') 4457 { 4458 if (cap->cmdchar == '[') 4459 findc = '{'; 4460 else 4461 findc = '}'; 4462 n = 9999; 4463 } 4464 else 4465 { 4466 findc = cap->nchar; 4467 n = cap->count1; 4468 } 4469 for ( ; n > 0; --n) 4470 { 4471 if ((pos = findmatchlimit(cap->oap, findc, 4472 (cap->cmdchar == '[') ? FM_BACKWARD : FM_FORWARD, 0)) == NULL) 4473 { 4474 if (new_pos.lnum == 0) // nothing found 4475 { 4476 if (cap->nchar != 'm' && cap->nchar != 'M') 4477 clearopbeep(cap->oap); 4478 } 4479 else 4480 pos = &new_pos; // use last one found 4481 break; 4482 } 4483 prev_pos = new_pos; 4484 curwin->w_cursor = *pos; 4485 new_pos = *pos; 4486 } 4487 curwin->w_cursor = old_pos; 4488 4489 /* 4490 * Handle "[m", "]m", "[M" and "[M". The findmatchlimit() only 4491 * brought us to the match for "[m" and "]M" when inside a method. 4492 * Try finding the '{' or '}' we want to be at. 4493 * Also repeat for the given count. 4494 */ 4495 if (cap->nchar == 'm' || cap->nchar == 'M') 4496 { 4497 // norm is TRUE for "]M" and "[m" 4498 int norm = ((findc == '{') == (cap->nchar == 'm')); 4499 4500 n = cap->count1; 4501 // found a match: we were inside a method 4502 if (prev_pos.lnum != 0) 4503 { 4504 pos = &prev_pos; 4505 curwin->w_cursor = prev_pos; 4506 if (norm) 4507 --n; 4508 } 4509 else 4510 pos = NULL; 4511 while (n > 0) 4512 { 4513 for (;;) 4514 { 4515 if ((findc == '{' ? dec_cursor() : inc_cursor()) < 0) 4516 { 4517 // if not found anything, that's an error 4518 if (pos == NULL) 4519 clearopbeep(cap->oap); 4520 n = 0; 4521 break; 4522 } 4523 c = gchar_cursor(); 4524 if (c == '{' || c == '}') 4525 { 4526 // Must have found end/start of class: use it. 4527 // Or found the place to be at. 4528 if ((c == findc && norm) || (n == 1 && !norm)) 4529 { 4530 new_pos = curwin->w_cursor; 4531 pos = &new_pos; 4532 n = 0; 4533 } 4534 // if no match found at all, we started outside of the 4535 // class and we're inside now. Just go on. 4536 else if (new_pos.lnum == 0) 4537 { 4538 new_pos = curwin->w_cursor; 4539 pos = &new_pos; 4540 } 4541 // found start/end of other method: go to match 4542 else if ((pos = findmatchlimit(cap->oap, findc, 4543 (cap->cmdchar == '[') ? FM_BACKWARD : FM_FORWARD, 4544 0)) == NULL) 4545 n = 0; 4546 else 4547 curwin->w_cursor = *pos; 4548 break; 4549 } 4550 } 4551 --n; 4552 } 4553 curwin->w_cursor = old_pos; 4554 if (pos == NULL && new_pos.lnum != 0) 4555 clearopbeep(cap->oap); 4556 } 4557 if (pos != NULL) 4558 { 4559 setpcmark(); 4560 curwin->w_cursor = *pos; 4561 curwin->w_set_curswant = TRUE; 4562 #ifdef FEAT_FOLDING 4563 if ((fdo_flags & FDO_BLOCK) && KeyTyped 4564 && cap->oap->op_type == OP_NOP) 4565 foldOpenCursor(); 4566 #endif 4567 } 4568 } 4569 4570 /* 4571 * "[[", "[]", "]]" and "][": move to start or end of function 4572 */ 4573 else if (cap->nchar == '[' || cap->nchar == ']') 4574 { 4575 if (cap->nchar == cap->cmdchar) // "]]" or "[[" 4576 flag = '{'; 4577 else 4578 flag = '}'; // "][" or "[]" 4579 4580 curwin->w_set_curswant = TRUE; 4581 /* 4582 * Imitate strange Vi behaviour: When using "]]" with an operator 4583 * we also stop at '}'. 4584 */ 4585 if (!findpar(&cap->oap->inclusive, cap->arg, cap->count1, flag, 4586 (cap->oap->op_type != OP_NOP 4587 && cap->arg == FORWARD && flag == '{'))) 4588 clearopbeep(cap->oap); 4589 else 4590 { 4591 if (cap->oap->op_type == OP_NOP) 4592 beginline(BL_WHITE | BL_FIX); 4593 #ifdef FEAT_FOLDING 4594 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP) 4595 foldOpenCursor(); 4596 #endif 4597 } 4598 } 4599 4600 /* 4601 * "[p", "[P", "]P" and "]p": put with indent adjustment 4602 */ 4603 else if (cap->nchar == 'p' || cap->nchar == 'P') 4604 { 4605 nv_put_opt(cap, TRUE); 4606 } 4607 4608 /* 4609 * "['", "[`", "]'" and "]`": jump to next mark 4610 */ 4611 else if (cap->nchar == '\'' || cap->nchar == '`') 4612 { 4613 pos = &curwin->w_cursor; 4614 for (n = cap->count1; n > 0; --n) 4615 { 4616 prev_pos = *pos; 4617 pos = getnextmark(pos, cap->cmdchar == '[' ? BACKWARD : FORWARD, 4618 cap->nchar == '\''); 4619 if (pos == NULL) 4620 break; 4621 } 4622 if (pos == NULL) 4623 pos = &prev_pos; 4624 nv_cursormark(cap, cap->nchar == '\'', pos); 4625 } 4626 4627 /* 4628 * [ or ] followed by a middle mouse click: put selected text with 4629 * indent adjustment. Any other button just does as usual. 4630 */ 4631 else if (cap->nchar >= K_RIGHTRELEASE && cap->nchar <= K_LEFTMOUSE) 4632 { 4633 (void)do_mouse(cap->oap, cap->nchar, 4634 (cap->cmdchar == ']') ? FORWARD : BACKWARD, 4635 cap->count1, PUT_FIXINDENT); 4636 } 4637 4638 #ifdef FEAT_FOLDING 4639 /* 4640 * "[z" and "]z": move to start or end of open fold. 4641 */ 4642 else if (cap->nchar == 'z') 4643 { 4644 if (foldMoveTo(FALSE, cap->cmdchar == ']' ? FORWARD : BACKWARD, 4645 cap->count1) == FAIL) 4646 clearopbeep(cap->oap); 4647 } 4648 #endif 4649 4650 #ifdef FEAT_DIFF 4651 /* 4652 * "[c" and "]c": move to next or previous diff-change. 4653 */ 4654 else if (cap->nchar == 'c') 4655 { 4656 if (diff_move_to(cap->cmdchar == ']' ? FORWARD : BACKWARD, 4657 cap->count1) == FAIL) 4658 clearopbeep(cap->oap); 4659 } 4660 #endif 4661 4662 #ifdef FEAT_SPELL 4663 /* 4664 * "[s", "[S", "]s" and "]S": move to next spell error. 4665 */ 4666 else if (cap->nchar == 's' || cap->nchar == 'S') 4667 { 4668 setpcmark(); 4669 for (n = 0; n < cap->count1; ++n) 4670 if (spell_move_to(curwin, cap->cmdchar == ']' ? FORWARD : BACKWARD, 4671 cap->nchar == 's' ? TRUE : FALSE, FALSE, NULL) == 0) 4672 { 4673 clearopbeep(cap->oap); 4674 break; 4675 } 4676 else 4677 curwin->w_set_curswant = TRUE; 4678 # ifdef FEAT_FOLDING 4679 if (cap->oap->op_type == OP_NOP && (fdo_flags & FDO_SEARCH) && KeyTyped) 4680 foldOpenCursor(); 4681 # endif 4682 } 4683 #endif 4684 4685 // Not a valid cap->nchar. 4686 else 4687 clearopbeep(cap->oap); 4688 } 4689 4690 /* 4691 * Handle Normal mode "%" command. 4692 */ 4693 static void 4694 nv_percent(cmdarg_T *cap) 4695 { 4696 pos_T *pos; 4697 #if defined(FEAT_FOLDING) 4698 linenr_T lnum = curwin->w_cursor.lnum; 4699 #endif 4700 4701 cap->oap->inclusive = TRUE; 4702 if (cap->count0) // {cnt}% : goto {cnt} percentage in file 4703 { 4704 if (cap->count0 > 100) 4705 clearopbeep(cap->oap); 4706 else 4707 { 4708 cap->oap->motion_type = MLINE; 4709 setpcmark(); 4710 // Round up, so CTRL-G will give same value. Watch out for a 4711 // large line count, the line number must not go negative! 4712 if (curbuf->b_ml.ml_line_count > 1000000) 4713 curwin->w_cursor.lnum = (curbuf->b_ml.ml_line_count + 99L) 4714 / 100L * cap->count0; 4715 else 4716 curwin->w_cursor.lnum = (curbuf->b_ml.ml_line_count * 4717 cap->count0 + 99L) / 100L; 4718 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count) 4719 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count; 4720 beginline(BL_SOL | BL_FIX); 4721 } 4722 } 4723 else // "%" : go to matching paren 4724 { 4725 cap->oap->motion_type = MCHAR; 4726 cap->oap->use_reg_one = TRUE; 4727 if ((pos = findmatch(cap->oap, NUL)) == NULL) 4728 clearopbeep(cap->oap); 4729 else 4730 { 4731 setpcmark(); 4732 curwin->w_cursor = *pos; 4733 curwin->w_set_curswant = TRUE; 4734 curwin->w_cursor.coladd = 0; 4735 adjust_for_sel(cap); 4736 } 4737 } 4738 #ifdef FEAT_FOLDING 4739 if (cap->oap->op_type == OP_NOP 4740 && lnum != curwin->w_cursor.lnum 4741 && (fdo_flags & FDO_PERCENT) 4742 && KeyTyped) 4743 foldOpenCursor(); 4744 #endif 4745 } 4746 4747 /* 4748 * Handle "(" and ")" commands. 4749 * cap->arg is BACKWARD for "(" and FORWARD for ")". 4750 */ 4751 static void 4752 nv_brace(cmdarg_T *cap) 4753 { 4754 cap->oap->motion_type = MCHAR; 4755 cap->oap->use_reg_one = TRUE; 4756 // The motion used to be inclusive for "(", but that is not what Vi does. 4757 cap->oap->inclusive = FALSE; 4758 curwin->w_set_curswant = TRUE; 4759 4760 if (findsent(cap->arg, cap->count1) == FAIL) 4761 clearopbeep(cap->oap); 4762 else 4763 { 4764 // Don't leave the cursor on the NUL past end of line. 4765 adjust_cursor(cap->oap); 4766 curwin->w_cursor.coladd = 0; 4767 #ifdef FEAT_FOLDING 4768 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP) 4769 foldOpenCursor(); 4770 #endif 4771 } 4772 } 4773 4774 /* 4775 * "m" command: Mark a position. 4776 */ 4777 static void 4778 nv_mark(cmdarg_T *cap) 4779 { 4780 if (!checkclearop(cap->oap)) 4781 { 4782 if (setmark(cap->nchar) == FAIL) 4783 clearopbeep(cap->oap); 4784 } 4785 } 4786 4787 /* 4788 * "{" and "}" commands. 4789 * cmd->arg is BACKWARD for "{" and FORWARD for "}". 4790 */ 4791 static void 4792 nv_findpar(cmdarg_T *cap) 4793 { 4794 cap->oap->motion_type = MCHAR; 4795 cap->oap->inclusive = FALSE; 4796 cap->oap->use_reg_one = TRUE; 4797 curwin->w_set_curswant = TRUE; 4798 if (!findpar(&cap->oap->inclusive, cap->arg, cap->count1, NUL, FALSE)) 4799 clearopbeep(cap->oap); 4800 else 4801 { 4802 curwin->w_cursor.coladd = 0; 4803 #ifdef FEAT_FOLDING 4804 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP) 4805 foldOpenCursor(); 4806 #endif 4807 } 4808 } 4809 4810 /* 4811 * "u" command: Undo or make lower case. 4812 */ 4813 static void 4814 nv_undo(cmdarg_T *cap) 4815 { 4816 if (cap->oap->op_type == OP_LOWER || VIsual_active) 4817 { 4818 // translate "<Visual>u" to "<Visual>gu" and "guu" to "gugu" 4819 cap->cmdchar = 'g'; 4820 cap->nchar = 'u'; 4821 nv_operator(cap); 4822 } 4823 else 4824 nv_kundo(cap); 4825 } 4826 4827 /* 4828 * <Undo> command. 4829 */ 4830 static void 4831 nv_kundo(cmdarg_T *cap) 4832 { 4833 if (!checkclearopq(cap->oap)) 4834 { 4835 #ifdef FEAT_JOB_CHANNEL 4836 if (bt_prompt(curbuf)) 4837 { 4838 clearopbeep(cap->oap); 4839 return; 4840 } 4841 #endif 4842 u_undo((int)cap->count1); 4843 curwin->w_set_curswant = TRUE; 4844 } 4845 } 4846 4847 /* 4848 * Handle the "r" command. 4849 */ 4850 static void 4851 nv_replace(cmdarg_T *cap) 4852 { 4853 char_u *ptr; 4854 int had_ctrl_v; 4855 long n; 4856 4857 if (checkclearop(cap->oap)) 4858 return; 4859 #ifdef FEAT_JOB_CHANNEL 4860 if (bt_prompt(curbuf) && !prompt_curpos_editable()) 4861 { 4862 clearopbeep(cap->oap); 4863 return; 4864 } 4865 #endif 4866 4867 // get another character 4868 if (cap->nchar == Ctrl_V) 4869 { 4870 had_ctrl_v = Ctrl_V; 4871 cap->nchar = get_literal(); 4872 // Don't redo a multibyte character with CTRL-V. 4873 if (cap->nchar > DEL) 4874 had_ctrl_v = NUL; 4875 } 4876 else 4877 had_ctrl_v = NUL; 4878 4879 // Abort if the character is a special key. 4880 if (IS_SPECIAL(cap->nchar)) 4881 { 4882 clearopbeep(cap->oap); 4883 return; 4884 } 4885 4886 // Visual mode "r" 4887 if (VIsual_active) 4888 { 4889 if (got_int) 4890 reset_VIsual(); 4891 if (had_ctrl_v) 4892 { 4893 // Use a special (negative) number to make a difference between a 4894 // literal CR or NL and a line break. 4895 if (cap->nchar == CAR) 4896 cap->nchar = REPLACE_CR_NCHAR; 4897 else if (cap->nchar == NL) 4898 cap->nchar = REPLACE_NL_NCHAR; 4899 } 4900 nv_operator(cap); 4901 return; 4902 } 4903 4904 // Break tabs, etc. 4905 if (virtual_active()) 4906 { 4907 if (u_save_cursor() == FAIL) 4908 return; 4909 if (gchar_cursor() == NUL) 4910 { 4911 // Add extra space and put the cursor on the first one. 4912 coladvance_force((colnr_T)(getviscol() + cap->count1)); 4913 curwin->w_cursor.col -= cap->count1; 4914 } 4915 else if (gchar_cursor() == TAB) 4916 coladvance_force(getviscol()); 4917 } 4918 4919 // Abort if not enough characters to replace. 4920 ptr = ml_get_cursor(); 4921 if (STRLEN(ptr) < (unsigned)cap->count1 4922 || (has_mbyte && mb_charlen(ptr) < cap->count1)) 4923 { 4924 clearopbeep(cap->oap); 4925 return; 4926 } 4927 4928 /* 4929 * Replacing with a TAB is done by edit() when it is complicated because 4930 * 'expandtab' or 'smarttab' is set. CTRL-V TAB inserts a literal TAB. 4931 * Other characters are done below to avoid problems with things like 4932 * CTRL-V 048 (for edit() this would be R CTRL-V 0 ESC). 4933 */ 4934 if (had_ctrl_v != Ctrl_V && cap->nchar == '\t' && (curbuf->b_p_et || p_sta)) 4935 { 4936 stuffnumReadbuff(cap->count1); 4937 stuffcharReadbuff('R'); 4938 stuffcharReadbuff('\t'); 4939 stuffcharReadbuff(ESC); 4940 return; 4941 } 4942 4943 // save line for undo 4944 if (u_save_cursor() == FAIL) 4945 return; 4946 4947 if (had_ctrl_v != Ctrl_V && (cap->nchar == '\r' || cap->nchar == '\n')) 4948 { 4949 /* 4950 * Replace character(s) by a single newline. 4951 * Strange vi behaviour: Only one newline is inserted. 4952 * Delete the characters here. 4953 * Insert the newline with an insert command, takes care of 4954 * autoindent. The insert command depends on being on the last 4955 * character of a line or not. 4956 */ 4957 (void)del_chars(cap->count1, FALSE); // delete the characters 4958 stuffcharReadbuff('\r'); 4959 stuffcharReadbuff(ESC); 4960 4961 // Give 'r' to edit(), to get the redo command right. 4962 invoke_edit(cap, TRUE, 'r', FALSE); 4963 } 4964 else 4965 { 4966 prep_redo(cap->oap->regname, cap->count1, 4967 NUL, 'r', NUL, had_ctrl_v, cap->nchar); 4968 4969 curbuf->b_op_start = curwin->w_cursor; 4970 if (has_mbyte) 4971 { 4972 int old_State = State; 4973 4974 if (cap->ncharC1 != 0) 4975 AppendCharToRedobuff(cap->ncharC1); 4976 if (cap->ncharC2 != 0) 4977 AppendCharToRedobuff(cap->ncharC2); 4978 4979 // This is slow, but it handles replacing a single-byte with a 4980 // multi-byte and the other way around. Also handles adding 4981 // composing characters for utf-8. 4982 for (n = cap->count1; n > 0; --n) 4983 { 4984 State = REPLACE; 4985 if (cap->nchar == Ctrl_E || cap->nchar == Ctrl_Y) 4986 { 4987 int c = ins_copychar(curwin->w_cursor.lnum 4988 + (cap->nchar == Ctrl_Y ? -1 : 1)); 4989 if (c != NUL) 4990 ins_char(c); 4991 else 4992 // will be decremented further down 4993 ++curwin->w_cursor.col; 4994 } 4995 else 4996 ins_char(cap->nchar); 4997 State = old_State; 4998 if (cap->ncharC1 != 0) 4999 ins_char(cap->ncharC1); 5000 if (cap->ncharC2 != 0) 5001 ins_char(cap->ncharC2); 5002 } 5003 } 5004 else 5005 { 5006 /* 5007 * Replace the characters within one line. 5008 */ 5009 for (n = cap->count1; n > 0; --n) 5010 { 5011 /* 5012 * Get ptr again, because u_save and/or showmatch() will have 5013 * released the line. At the same time we let know that the 5014 * line will be changed. 5015 */ 5016 ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE); 5017 if (cap->nchar == Ctrl_E || cap->nchar == Ctrl_Y) 5018 { 5019 int c = ins_copychar(curwin->w_cursor.lnum 5020 + (cap->nchar == Ctrl_Y ? -1 : 1)); 5021 if (c != NUL) 5022 ptr[curwin->w_cursor.col] = c; 5023 } 5024 else 5025 ptr[curwin->w_cursor.col] = cap->nchar; 5026 if (p_sm && msg_silent == 0) 5027 showmatch(cap->nchar); 5028 ++curwin->w_cursor.col; 5029 } 5030 #ifdef FEAT_NETBEANS_INTG 5031 if (netbeans_active()) 5032 { 5033 colnr_T start = (colnr_T)(curwin->w_cursor.col - cap->count1); 5034 5035 netbeans_removed(curbuf, curwin->w_cursor.lnum, start, 5036 (long)cap->count1); 5037 netbeans_inserted(curbuf, curwin->w_cursor.lnum, start, 5038 &ptr[start], (int)cap->count1); 5039 } 5040 #endif 5041 5042 // mark the buffer as changed and prepare for displaying 5043 changed_bytes(curwin->w_cursor.lnum, 5044 (colnr_T)(curwin->w_cursor.col - cap->count1)); 5045 } 5046 --curwin->w_cursor.col; // cursor on the last replaced char 5047 // if the character on the left of the current cursor is a multi-byte 5048 // character, move two characters left 5049 if (has_mbyte) 5050 mb_adjust_cursor(); 5051 curbuf->b_op_end = curwin->w_cursor; 5052 curwin->w_set_curswant = TRUE; 5053 set_last_insert(cap->nchar); 5054 } 5055 } 5056 5057 /* 5058 * 'o': Exchange start and end of Visual area. 5059 * 'O': same, but in block mode exchange left and right corners. 5060 */ 5061 static void 5062 v_swap_corners(int cmdchar) 5063 { 5064 pos_T old_cursor; 5065 colnr_T left, right; 5066 5067 if (cmdchar == 'O' && VIsual_mode == Ctrl_V) 5068 { 5069 old_cursor = curwin->w_cursor; 5070 getvcols(curwin, &old_cursor, &VIsual, &left, &right); 5071 curwin->w_cursor.lnum = VIsual.lnum; 5072 coladvance(left); 5073 VIsual = curwin->w_cursor; 5074 5075 curwin->w_cursor.lnum = old_cursor.lnum; 5076 curwin->w_curswant = right; 5077 // 'selection "exclusive" and cursor at right-bottom corner: move it 5078 // right one column 5079 if (old_cursor.lnum >= VIsual.lnum && *p_sel == 'e') 5080 ++curwin->w_curswant; 5081 coladvance(curwin->w_curswant); 5082 if (curwin->w_cursor.col == old_cursor.col 5083 && (!virtual_active() 5084 || curwin->w_cursor.coladd == old_cursor.coladd)) 5085 { 5086 curwin->w_cursor.lnum = VIsual.lnum; 5087 if (old_cursor.lnum <= VIsual.lnum && *p_sel == 'e') 5088 ++right; 5089 coladvance(right); 5090 VIsual = curwin->w_cursor; 5091 5092 curwin->w_cursor.lnum = old_cursor.lnum; 5093 coladvance(left); 5094 curwin->w_curswant = left; 5095 } 5096 } 5097 else 5098 { 5099 old_cursor = curwin->w_cursor; 5100 curwin->w_cursor = VIsual; 5101 VIsual = old_cursor; 5102 curwin->w_set_curswant = TRUE; 5103 } 5104 } 5105 5106 /* 5107 * "R" (cap->arg is FALSE) and "gR" (cap->arg is TRUE). 5108 */ 5109 static void 5110 nv_Replace(cmdarg_T *cap) 5111 { 5112 if (VIsual_active) // "R" is replace lines 5113 { 5114 cap->cmdchar = 'c'; 5115 cap->nchar = NUL; 5116 VIsual_mode_orig = VIsual_mode; // remember original area for gv 5117 VIsual_mode = 'V'; 5118 nv_operator(cap); 5119 } 5120 else if (!checkclearopq(cap->oap)) 5121 { 5122 if (!curbuf->b_p_ma) 5123 emsg(_(e_modifiable)); 5124 else 5125 { 5126 if (virtual_active()) 5127 coladvance(getviscol()); 5128 invoke_edit(cap, FALSE, cap->arg ? 'V' : 'R', FALSE); 5129 } 5130 } 5131 } 5132 5133 /* 5134 * "gr". 5135 */ 5136 static void 5137 nv_vreplace(cmdarg_T *cap) 5138 { 5139 if (VIsual_active) 5140 { 5141 cap->cmdchar = 'r'; 5142 cap->nchar = cap->extra_char; 5143 nv_replace(cap); // Do same as "r" in Visual mode for now 5144 } 5145 else if (!checkclearopq(cap->oap)) 5146 { 5147 if (!curbuf->b_p_ma) 5148 emsg(_(e_modifiable)); 5149 else 5150 { 5151 if (cap->extra_char == Ctrl_V) // get another character 5152 cap->extra_char = get_literal(); 5153 stuffcharReadbuff(cap->extra_char); 5154 stuffcharReadbuff(ESC); 5155 if (virtual_active()) 5156 coladvance(getviscol()); 5157 invoke_edit(cap, TRUE, 'v', FALSE); 5158 } 5159 } 5160 } 5161 5162 /* 5163 * Swap case for "~" command, when it does not work like an operator. 5164 */ 5165 static void 5166 n_swapchar(cmdarg_T *cap) 5167 { 5168 long n; 5169 pos_T startpos; 5170 int did_change = 0; 5171 #ifdef FEAT_NETBEANS_INTG 5172 pos_T pos; 5173 char_u *ptr; 5174 int count; 5175 #endif 5176 5177 if (checkclearopq(cap->oap)) 5178 return; 5179 5180 if (LINEEMPTY(curwin->w_cursor.lnum) && vim_strchr(p_ww, '~') == NULL) 5181 { 5182 clearopbeep(cap->oap); 5183 return; 5184 } 5185 5186 prep_redo_cmd(cap); 5187 5188 if (u_save_cursor() == FAIL) 5189 return; 5190 5191 startpos = curwin->w_cursor; 5192 #ifdef FEAT_NETBEANS_INTG 5193 pos = startpos; 5194 #endif 5195 for (n = cap->count1; n > 0; --n) 5196 { 5197 did_change |= swapchar(cap->oap->op_type, &curwin->w_cursor); 5198 inc_cursor(); 5199 if (gchar_cursor() == NUL) 5200 { 5201 if (vim_strchr(p_ww, '~') != NULL 5202 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count) 5203 { 5204 #ifdef FEAT_NETBEANS_INTG 5205 if (netbeans_active()) 5206 { 5207 if (did_change) 5208 { 5209 ptr = ml_get(pos.lnum); 5210 count = (int)STRLEN(ptr) - pos.col; 5211 netbeans_removed(curbuf, pos.lnum, pos.col, 5212 (long)count); 5213 netbeans_inserted(curbuf, pos.lnum, pos.col, 5214 &ptr[pos.col], count); 5215 } 5216 pos.col = 0; 5217 pos.lnum++; 5218 } 5219 #endif 5220 ++curwin->w_cursor.lnum; 5221 curwin->w_cursor.col = 0; 5222 if (n > 1) 5223 { 5224 if (u_savesub(curwin->w_cursor.lnum) == FAIL) 5225 break; 5226 u_clearline(); 5227 } 5228 } 5229 else 5230 break; 5231 } 5232 } 5233 #ifdef FEAT_NETBEANS_INTG 5234 if (did_change && netbeans_active()) 5235 { 5236 ptr = ml_get(pos.lnum); 5237 count = curwin->w_cursor.col - pos.col; 5238 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count); 5239 netbeans_inserted(curbuf, pos.lnum, pos.col, &ptr[pos.col], count); 5240 } 5241 #endif 5242 5243 5244 check_cursor(); 5245 curwin->w_set_curswant = TRUE; 5246 if (did_change) 5247 { 5248 changed_lines(startpos.lnum, startpos.col, curwin->w_cursor.lnum + 1, 5249 0L); 5250 curbuf->b_op_start = startpos; 5251 curbuf->b_op_end = curwin->w_cursor; 5252 if (curbuf->b_op_end.col > 0) 5253 --curbuf->b_op_end.col; 5254 } 5255 } 5256 5257 /* 5258 * Move cursor to mark. 5259 */ 5260 static void 5261 nv_cursormark(cmdarg_T *cap, int flag, pos_T *pos) 5262 { 5263 if (check_mark(pos) == FAIL) 5264 clearop(cap->oap); 5265 else 5266 { 5267 if (cap->cmdchar == '\'' 5268 || cap->cmdchar == '`' 5269 || cap->cmdchar == '[' 5270 || cap->cmdchar == ']') 5271 setpcmark(); 5272 curwin->w_cursor = *pos; 5273 if (flag) 5274 beginline(BL_WHITE | BL_FIX); 5275 else 5276 check_cursor(); 5277 } 5278 cap->oap->motion_type = flag ? MLINE : MCHAR; 5279 if (cap->cmdchar == '`') 5280 cap->oap->use_reg_one = TRUE; 5281 cap->oap->inclusive = FALSE; // ignored if not MCHAR 5282 curwin->w_set_curswant = TRUE; 5283 } 5284 5285 /* 5286 * Handle commands that are operators in Visual mode. 5287 */ 5288 static void 5289 v_visop(cmdarg_T *cap) 5290 { 5291 static char_u trans[] = "YyDdCcxdXdAAIIrr"; 5292 5293 // Uppercase means linewise, except in block mode, then "D" deletes till 5294 // the end of the line, and "C" replaces till EOL 5295 if (isupper(cap->cmdchar)) 5296 { 5297 if (VIsual_mode != Ctrl_V) 5298 { 5299 VIsual_mode_orig = VIsual_mode; 5300 VIsual_mode = 'V'; 5301 } 5302 else if (cap->cmdchar == 'C' || cap->cmdchar == 'D') 5303 curwin->w_curswant = MAXCOL; 5304 } 5305 cap->cmdchar = *(vim_strchr(trans, cap->cmdchar) + 1); 5306 nv_operator(cap); 5307 } 5308 5309 /* 5310 * "s" and "S" commands. 5311 */ 5312 static void 5313 nv_subst(cmdarg_T *cap) 5314 { 5315 #ifdef FEAT_TERMINAL 5316 // When showing output of term_dumpdiff() swap the top and botom. 5317 if (term_swap_diff() == OK) 5318 return; 5319 #endif 5320 #ifdef FEAT_JOB_CHANNEL 5321 if (bt_prompt(curbuf) && !prompt_curpos_editable()) 5322 { 5323 clearopbeep(cap->oap); 5324 return; 5325 } 5326 #endif 5327 if (VIsual_active) // "vs" and "vS" are the same as "vc" 5328 { 5329 if (cap->cmdchar == 'S') 5330 { 5331 VIsual_mode_orig = VIsual_mode; 5332 VIsual_mode = 'V'; 5333 } 5334 cap->cmdchar = 'c'; 5335 nv_operator(cap); 5336 } 5337 else 5338 nv_optrans(cap); 5339 } 5340 5341 /* 5342 * Abbreviated commands. 5343 */ 5344 static void 5345 nv_abbrev(cmdarg_T *cap) 5346 { 5347 if (cap->cmdchar == K_DEL || cap->cmdchar == K_KDEL) 5348 cap->cmdchar = 'x'; // DEL key behaves like 'x' 5349 5350 // in Visual mode these commands are operators 5351 if (VIsual_active) 5352 v_visop(cap); 5353 else 5354 nv_optrans(cap); 5355 } 5356 5357 /* 5358 * Translate a command into another command. 5359 */ 5360 static void 5361 nv_optrans(cmdarg_T *cap) 5362 { 5363 static char_u *(ar[8]) = {(char_u *)"dl", (char_u *)"dh", 5364 (char_u *)"d$", (char_u *)"c$", 5365 (char_u *)"cl", (char_u *)"cc", 5366 (char_u *)"yy", (char_u *)":s\r"}; 5367 static char_u *str = (char_u *)"xXDCsSY&"; 5368 5369 if (!checkclearopq(cap->oap)) 5370 { 5371 // In Vi "2D" doesn't delete the next line. Can't translate it 5372 // either, because "2." should also not use the count. 5373 if (cap->cmdchar == 'D' && vim_strchr(p_cpo, CPO_HASH) != NULL) 5374 { 5375 cap->oap->start = curwin->w_cursor; 5376 cap->oap->op_type = OP_DELETE; 5377 #ifdef FEAT_EVAL 5378 set_op_var(OP_DELETE); 5379 #endif 5380 cap->count1 = 1; 5381 nv_dollar(cap); 5382 finish_op = TRUE; 5383 ResetRedobuff(); 5384 AppendCharToRedobuff('D'); 5385 } 5386 else 5387 { 5388 if (cap->count0) 5389 stuffnumReadbuff(cap->count0); 5390 stuffReadbuff(ar[(int)(vim_strchr(str, cap->cmdchar) - str)]); 5391 } 5392 } 5393 cap->opcount = 0; 5394 } 5395 5396 /* 5397 * "'" and "`" commands. Also for "g'" and "g`". 5398 * cap->arg is TRUE for "'" and "g'". 5399 */ 5400 static void 5401 nv_gomark(cmdarg_T *cap) 5402 { 5403 pos_T *pos; 5404 int c; 5405 #ifdef FEAT_FOLDING 5406 pos_T old_cursor = curwin->w_cursor; 5407 int old_KeyTyped = KeyTyped; // getting file may reset it 5408 #endif 5409 5410 if (cap->cmdchar == 'g') 5411 c = cap->extra_char; 5412 else 5413 c = cap->nchar; 5414 pos = getmark(c, (cap->oap->op_type == OP_NOP)); 5415 if (pos == (pos_T *)-1) // jumped to other file 5416 { 5417 if (cap->arg) 5418 { 5419 check_cursor_lnum(); 5420 beginline(BL_WHITE | BL_FIX); 5421 } 5422 else 5423 check_cursor(); 5424 } 5425 else 5426 nv_cursormark(cap, cap->arg, pos); 5427 5428 // May need to clear the coladd that a mark includes. 5429 if (!virtual_active()) 5430 curwin->w_cursor.coladd = 0; 5431 check_cursor_col(); 5432 #ifdef FEAT_FOLDING 5433 if (cap->oap->op_type == OP_NOP 5434 && pos != NULL 5435 && (pos == (pos_T *)-1 || !EQUAL_POS(old_cursor, *pos)) 5436 && (fdo_flags & FDO_MARK) 5437 && old_KeyTyped) 5438 foldOpenCursor(); 5439 #endif 5440 } 5441 5442 /* 5443 * Handle CTRL-O, CTRL-I, "g;" and "g," commands. 5444 */ 5445 static void 5446 nv_pcmark(cmdarg_T *cap) 5447 { 5448 #ifdef FEAT_JUMPLIST 5449 pos_T *pos; 5450 # ifdef FEAT_FOLDING 5451 linenr_T lnum = curwin->w_cursor.lnum; 5452 int old_KeyTyped = KeyTyped; // getting file may reset it 5453 # endif 5454 5455 if (!checkclearopq(cap->oap)) 5456 { 5457 if (cap->cmdchar == 'g') 5458 pos = movechangelist((int)cap->count1); 5459 else 5460 pos = movemark((int)cap->count1); 5461 if (pos == (pos_T *)-1) // jump to other file 5462 { 5463 curwin->w_set_curswant = TRUE; 5464 check_cursor(); 5465 } 5466 else if (pos != NULL) // can jump 5467 nv_cursormark(cap, FALSE, pos); 5468 else if (cap->cmdchar == 'g') 5469 { 5470 if (curbuf->b_changelistlen == 0) 5471 emsg(_("E664: changelist is empty")); 5472 else if (cap->count1 < 0) 5473 emsg(_("E662: At start of changelist")); 5474 else 5475 emsg(_("E663: At end of changelist")); 5476 } 5477 else 5478 clearopbeep(cap->oap); 5479 # ifdef FEAT_FOLDING 5480 if (cap->oap->op_type == OP_NOP 5481 && (pos == (pos_T *)-1 || lnum != curwin->w_cursor.lnum) 5482 && (fdo_flags & FDO_MARK) 5483 && old_KeyTyped) 5484 foldOpenCursor(); 5485 # endif 5486 } 5487 #else 5488 clearopbeep(cap->oap); 5489 #endif 5490 } 5491 5492 /* 5493 * Handle '"' command. 5494 */ 5495 static void 5496 nv_regname(cmdarg_T *cap) 5497 { 5498 if (checkclearop(cap->oap)) 5499 return; 5500 #ifdef FEAT_EVAL 5501 if (cap->nchar == '=') 5502 cap->nchar = get_expr_register(); 5503 #endif 5504 if (cap->nchar != NUL && valid_yank_reg(cap->nchar, FALSE)) 5505 { 5506 cap->oap->regname = cap->nchar; 5507 cap->opcount = cap->count0; // remember count before '"' 5508 #ifdef FEAT_EVAL 5509 set_reg_var(cap->oap->regname); 5510 #endif 5511 } 5512 else 5513 clearopbeep(cap->oap); 5514 } 5515 5516 /* 5517 * Handle "v", "V" and "CTRL-V" commands. 5518 * Also for "gh", "gH" and "g^H" commands: Always start Select mode, cap->arg 5519 * is TRUE. 5520 * Handle CTRL-Q just like CTRL-V. 5521 */ 5522 static void 5523 nv_visual(cmdarg_T *cap) 5524 { 5525 if (cap->cmdchar == Ctrl_Q) 5526 cap->cmdchar = Ctrl_V; 5527 5528 // 'v', 'V' and CTRL-V can be used while an operator is pending to make it 5529 // characterwise, linewise, or blockwise. 5530 if (cap->oap->op_type != OP_NOP) 5531 { 5532 motion_force = cap->oap->motion_force = cap->cmdchar; 5533 finish_op = FALSE; // operator doesn't finish now but later 5534 return; 5535 } 5536 5537 VIsual_select = cap->arg; 5538 if (VIsual_active) // change Visual mode 5539 { 5540 if (VIsual_mode == cap->cmdchar) // stop visual mode 5541 end_visual_mode(); 5542 else // toggle char/block mode 5543 { // or char/line mode 5544 VIsual_mode = cap->cmdchar; 5545 showmode(); 5546 } 5547 redraw_curbuf_later(INVERTED); // update the inversion 5548 } 5549 else // start Visual mode 5550 { 5551 check_visual_highlight(); 5552 if (cap->count0 > 0 && resel_VIsual_mode != NUL) 5553 { 5554 // use previously selected part 5555 VIsual = curwin->w_cursor; 5556 5557 VIsual_active = TRUE; 5558 VIsual_reselect = TRUE; 5559 if (!cap->arg) 5560 // start Select mode when 'selectmode' contains "cmd" 5561 may_start_select('c'); 5562 setmouse(); 5563 if (p_smd && msg_silent == 0) 5564 redraw_cmdline = TRUE; // show visual mode later 5565 /* 5566 * For V and ^V, we multiply the number of lines even if there 5567 * was only one -- webb 5568 */ 5569 if (resel_VIsual_mode != 'v' || resel_VIsual_line_count > 1) 5570 { 5571 curwin->w_cursor.lnum += 5572 resel_VIsual_line_count * cap->count0 - 1; 5573 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count) 5574 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count; 5575 } 5576 VIsual_mode = resel_VIsual_mode; 5577 if (VIsual_mode == 'v') 5578 { 5579 if (resel_VIsual_line_count <= 1) 5580 { 5581 validate_virtcol(); 5582 curwin->w_curswant = curwin->w_virtcol 5583 + resel_VIsual_vcol * cap->count0 - 1; 5584 } 5585 else 5586 curwin->w_curswant = resel_VIsual_vcol; 5587 coladvance(curwin->w_curswant); 5588 } 5589 if (resel_VIsual_vcol == MAXCOL) 5590 { 5591 curwin->w_curswant = MAXCOL; 5592 coladvance((colnr_T)MAXCOL); 5593 } 5594 else if (VIsual_mode == Ctrl_V) 5595 { 5596 validate_virtcol(); 5597 curwin->w_curswant = curwin->w_virtcol 5598 + resel_VIsual_vcol * cap->count0 - 1; 5599 coladvance(curwin->w_curswant); 5600 } 5601 else 5602 curwin->w_set_curswant = TRUE; 5603 redraw_curbuf_later(INVERTED); // show the inversion 5604 } 5605 else 5606 { 5607 if (!cap->arg) 5608 // start Select mode when 'selectmode' contains "cmd" 5609 may_start_select('c'); 5610 n_start_visual_mode(cap->cmdchar); 5611 if (VIsual_mode != 'V' && *p_sel == 'e') 5612 ++cap->count1; // include one more char 5613 if (cap->count0 > 0 && --cap->count1 > 0) 5614 { 5615 // With a count select that many characters or lines. 5616 if (VIsual_mode == 'v' || VIsual_mode == Ctrl_V) 5617 nv_right(cap); 5618 else if (VIsual_mode == 'V') 5619 nv_down(cap); 5620 } 5621 } 5622 } 5623 } 5624 5625 /* 5626 * Start selection for Shift-movement keys. 5627 */ 5628 void 5629 start_selection(void) 5630 { 5631 // if 'selectmode' contains "key", start Select mode 5632 may_start_select('k'); 5633 n_start_visual_mode('v'); 5634 } 5635 5636 /* 5637 * Start Select mode, if "c" is in 'selectmode' and not in a mapping or menu. 5638 */ 5639 void 5640 may_start_select(int c) 5641 { 5642 VIsual_select = (stuff_empty() && typebuf_typed() 5643 && (vim_strchr(p_slm, c) != NULL)); 5644 } 5645 5646 /* 5647 * Start Visual mode "c". 5648 * Should set VIsual_select before calling this. 5649 */ 5650 static void 5651 n_start_visual_mode(int c) 5652 { 5653 #ifdef FEAT_CONCEAL 5654 // Check for redraw before changing the state. 5655 conceal_check_cursor_line(); 5656 #endif 5657 5658 VIsual_mode = c; 5659 VIsual_active = TRUE; 5660 VIsual_reselect = TRUE; 5661 5662 // Corner case: the 0 position in a tab may change when going into 5663 // virtualedit. Recalculate curwin->w_cursor to avoid bad highlighting. 5664 if (c == Ctrl_V && (ve_flags & VE_BLOCK) && gchar_cursor() == TAB) 5665 { 5666 validate_virtcol(); 5667 coladvance(curwin->w_virtcol); 5668 } 5669 VIsual = curwin->w_cursor; 5670 5671 #ifdef FEAT_FOLDING 5672 foldAdjustVisual(); 5673 #endif 5674 5675 setmouse(); 5676 #ifdef FEAT_CONCEAL 5677 // Check for redraw after changing the state. 5678 conceal_check_cursor_line(); 5679 #endif 5680 5681 if (p_smd && msg_silent == 0) 5682 redraw_cmdline = TRUE; // show visual mode later 5683 #ifdef FEAT_CLIPBOARD 5684 // Make sure the clipboard gets updated. Needed because start and 5685 // end may still be the same, and the selection needs to be owned 5686 clip_star.vmode = NUL; 5687 #endif 5688 5689 // Only need to redraw this line, unless still need to redraw an old 5690 // Visual area (when 'lazyredraw' is set). 5691 if (curwin->w_redr_type < INVERTED) 5692 { 5693 curwin->w_old_cursor_lnum = curwin->w_cursor.lnum; 5694 curwin->w_old_visual_lnum = curwin->w_cursor.lnum; 5695 } 5696 } 5697 5698 5699 /* 5700 * CTRL-W: Window commands 5701 */ 5702 static void 5703 nv_window(cmdarg_T *cap) 5704 { 5705 if (cap->nchar == ':') 5706 { 5707 // "CTRL-W :" is the same as typing ":"; useful in a terminal window 5708 cap->cmdchar = ':'; 5709 cap->nchar = NUL; 5710 nv_colon(cap); 5711 } 5712 else if (!checkclearop(cap->oap)) 5713 do_window(cap->nchar, cap->count0, NUL); // everything is in window.c 5714 } 5715 5716 /* 5717 * CTRL-Z: Suspend 5718 */ 5719 static void 5720 nv_suspend(cmdarg_T *cap) 5721 { 5722 clearop(cap->oap); 5723 if (VIsual_active) 5724 end_visual_mode(); // stop Visual mode 5725 do_cmdline_cmd((char_u *)"st"); 5726 } 5727 5728 /* 5729 * Commands starting with "g". 5730 */ 5731 static void 5732 nv_g_cmd(cmdarg_T *cap) 5733 { 5734 oparg_T *oap = cap->oap; 5735 pos_T tpos; 5736 int i; 5737 int flag = FALSE; 5738 5739 switch (cap->nchar) 5740 { 5741 case Ctrl_A: 5742 case Ctrl_X: 5743 #ifdef MEM_PROFILE 5744 /* 5745 * "g^A": dump log of used memory. 5746 */ 5747 if (!VIsual_active && cap->nchar == Ctrl_A) 5748 vim_mem_profile_dump(); 5749 else 5750 #endif 5751 /* 5752 * "g^A/g^X": sequentially increment visually selected region 5753 */ 5754 if (VIsual_active) 5755 { 5756 cap->arg = TRUE; 5757 cap->cmdchar = cap->nchar; 5758 cap->nchar = NUL; 5759 nv_addsub(cap); 5760 } 5761 else 5762 clearopbeep(oap); 5763 break; 5764 5765 /* 5766 * "gR": Enter virtual replace mode. 5767 */ 5768 case 'R': 5769 cap->arg = TRUE; 5770 nv_Replace(cap); 5771 break; 5772 5773 case 'r': 5774 nv_vreplace(cap); 5775 break; 5776 5777 case '&': 5778 do_cmdline_cmd((char_u *)"%s//~/&"); 5779 break; 5780 5781 /* 5782 * "gv": Reselect the previous Visual area. If Visual already active, 5783 * exchange previous and current Visual area. 5784 */ 5785 case 'v': 5786 if (checkclearop(oap)) 5787 break; 5788 5789 if ( curbuf->b_visual.vi_start.lnum == 0 5790 || curbuf->b_visual.vi_start.lnum > curbuf->b_ml.ml_line_count 5791 || curbuf->b_visual.vi_end.lnum == 0) 5792 beep_flush(); 5793 else 5794 { 5795 // set w_cursor to the start of the Visual area, tpos to the end 5796 if (VIsual_active) 5797 { 5798 i = VIsual_mode; 5799 VIsual_mode = curbuf->b_visual.vi_mode; 5800 curbuf->b_visual.vi_mode = i; 5801 # ifdef FEAT_EVAL 5802 curbuf->b_visual_mode_eval = i; 5803 # endif 5804 i = curwin->w_curswant; 5805 curwin->w_curswant = curbuf->b_visual.vi_curswant; 5806 curbuf->b_visual.vi_curswant = i; 5807 5808 tpos = curbuf->b_visual.vi_end; 5809 curbuf->b_visual.vi_end = curwin->w_cursor; 5810 curwin->w_cursor = curbuf->b_visual.vi_start; 5811 curbuf->b_visual.vi_start = VIsual; 5812 } 5813 else 5814 { 5815 VIsual_mode = curbuf->b_visual.vi_mode; 5816 curwin->w_curswant = curbuf->b_visual.vi_curswant; 5817 tpos = curbuf->b_visual.vi_end; 5818 curwin->w_cursor = curbuf->b_visual.vi_start; 5819 } 5820 5821 VIsual_active = TRUE; 5822 VIsual_reselect = TRUE; 5823 5824 // Set Visual to the start and w_cursor to the end of the Visual 5825 // area. Make sure they are on an existing character. 5826 check_cursor(); 5827 VIsual = curwin->w_cursor; 5828 curwin->w_cursor = tpos; 5829 check_cursor(); 5830 update_topline(); 5831 /* 5832 * When called from normal "g" command: start Select mode when 5833 * 'selectmode' contains "cmd". When called for K_SELECT, always 5834 * start Select mode. 5835 */ 5836 if (cap->arg) 5837 VIsual_select = TRUE; 5838 else 5839 may_start_select('c'); 5840 setmouse(); 5841 #ifdef FEAT_CLIPBOARD 5842 // Make sure the clipboard gets updated. Needed because start and 5843 // end are still the same, and the selection needs to be owned 5844 clip_star.vmode = NUL; 5845 #endif 5846 redraw_curbuf_later(INVERTED); 5847 showmode(); 5848 } 5849 break; 5850 /* 5851 * "gV": Don't reselect the previous Visual area after a Select mode 5852 * mapping of menu. 5853 */ 5854 case 'V': 5855 VIsual_reselect = FALSE; 5856 break; 5857 5858 /* 5859 * "gh": start Select mode. 5860 * "gH": start Select line mode. 5861 * "g^H": start Select block mode. 5862 */ 5863 case K_BS: 5864 cap->nchar = Ctrl_H; 5865 // FALLTHROUGH 5866 case 'h': 5867 case 'H': 5868 case Ctrl_H: 5869 # ifdef EBCDIC 5870 // EBCDIC: 'v'-'h' != '^v'-'^h' 5871 if (cap->nchar == Ctrl_H) 5872 cap->cmdchar = Ctrl_V; 5873 else 5874 # endif 5875 cap->cmdchar = cap->nchar + ('v' - 'h'); 5876 cap->arg = TRUE; 5877 nv_visual(cap); 5878 break; 5879 5880 // "gn", "gN" visually select next/previous search match 5881 // "gn" selects next match 5882 // "gN" selects previous match 5883 case 'N': 5884 case 'n': 5885 if (!current_search(cap->count1, cap->nchar == 'n')) 5886 clearopbeep(oap); 5887 break; 5888 5889 /* 5890 * "gj" and "gk" two new funny movement keys -- up and down 5891 * movement based on *screen* line rather than *file* line. 5892 */ 5893 case 'j': 5894 case K_DOWN: 5895 // with 'nowrap' it works just like the normal "j" command; also when 5896 // in a closed fold 5897 if (!curwin->w_p_wrap 5898 #ifdef FEAT_FOLDING 5899 || hasFolding(curwin->w_cursor.lnum, NULL, NULL) 5900 #endif 5901 ) 5902 { 5903 oap->motion_type = MLINE; 5904 i = cursor_down(cap->count1, oap->op_type == OP_NOP); 5905 } 5906 else 5907 i = nv_screengo(oap, FORWARD, cap->count1); 5908 if (i == FAIL) 5909 clearopbeep(oap); 5910 break; 5911 5912 case 'k': 5913 case K_UP: 5914 // with 'nowrap' it works just like the normal "k" command; also when 5915 // in a closed fold 5916 if (!curwin->w_p_wrap 5917 #ifdef FEAT_FOLDING 5918 || hasFolding(curwin->w_cursor.lnum, NULL, NULL) 5919 #endif 5920 ) 5921 { 5922 oap->motion_type = MLINE; 5923 i = cursor_up(cap->count1, oap->op_type == OP_NOP); 5924 } 5925 else 5926 i = nv_screengo(oap, BACKWARD, cap->count1); 5927 if (i == FAIL) 5928 clearopbeep(oap); 5929 break; 5930 5931 /* 5932 * "gJ": join two lines without inserting a space. 5933 */ 5934 case 'J': 5935 nv_join(cap); 5936 break; 5937 5938 /* 5939 * "g0", "g^" and "g$": Like "0", "^" and "$" but for screen lines. 5940 * "gm": middle of "g0" and "g$". 5941 */ 5942 case '^': 5943 flag = TRUE; 5944 // FALLTHROUGH 5945 5946 case '0': 5947 case 'm': 5948 case K_HOME: 5949 case K_KHOME: 5950 oap->motion_type = MCHAR; 5951 oap->inclusive = FALSE; 5952 if (curwin->w_p_wrap && curwin->w_width != 0) 5953 { 5954 int width1 = curwin->w_width - curwin_col_off(); 5955 int width2 = width1 + curwin_col_off2(); 5956 5957 validate_virtcol(); 5958 i = 0; 5959 if (curwin->w_virtcol >= (colnr_T)width1 && width2 > 0) 5960 i = (curwin->w_virtcol - width1) / width2 * width2 + width1; 5961 } 5962 else 5963 i = curwin->w_leftcol; 5964 // Go to the middle of the screen line. When 'number' or 5965 // 'relativenumber' is on and lines are wrapping the middle can be more 5966 // to the left. 5967 if (cap->nchar == 'm') 5968 i += (curwin->w_width - curwin_col_off() 5969 + ((curwin->w_p_wrap && i > 0) 5970 ? curwin_col_off2() : 0)) / 2; 5971 coladvance((colnr_T)i); 5972 if (flag) 5973 { 5974 do 5975 i = gchar_cursor(); 5976 while (VIM_ISWHITE(i) && oneright() == OK); 5977 curwin->w_valid &= ~VALID_WCOL; 5978 } 5979 curwin->w_set_curswant = TRUE; 5980 break; 5981 5982 case 'M': 5983 { 5984 char_u *ptr = ml_get_curline(); 5985 5986 oap->motion_type = MCHAR; 5987 oap->inclusive = FALSE; 5988 if (has_mbyte) 5989 i = mb_string2cells(ptr, (int)STRLEN(ptr)); 5990 else 5991 i = (int)STRLEN(ptr); 5992 if (cap->count0 > 0 && cap->count0 <= 100) 5993 coladvance((colnr_T)(i * cap->count0 / 100)); 5994 else 5995 coladvance((colnr_T)(i / 2)); 5996 curwin->w_set_curswant = TRUE; 5997 } 5998 break; 5999 6000 case '_': 6001 // "g_": to the last non-blank character in the line or <count> lines 6002 // downward. 6003 cap->oap->motion_type = MCHAR; 6004 cap->oap->inclusive = TRUE; 6005 curwin->w_curswant = MAXCOL; 6006 if (cursor_down((long)(cap->count1 - 1), 6007 cap->oap->op_type == OP_NOP) == FAIL) 6008 clearopbeep(cap->oap); 6009 else 6010 { 6011 char_u *ptr = ml_get_curline(); 6012 6013 // In Visual mode we may end up after the line. 6014 if (curwin->w_cursor.col > 0 && ptr[curwin->w_cursor.col] == NUL) 6015 --curwin->w_cursor.col; 6016 6017 // Decrease the cursor column until it's on a non-blank. 6018 while (curwin->w_cursor.col > 0 6019 && VIM_ISWHITE(ptr[curwin->w_cursor.col])) 6020 --curwin->w_cursor.col; 6021 curwin->w_set_curswant = TRUE; 6022 adjust_for_sel(cap); 6023 } 6024 break; 6025 6026 case '$': 6027 case K_END: 6028 case K_KEND: 6029 { 6030 int col_off = curwin_col_off(); 6031 6032 oap->motion_type = MCHAR; 6033 oap->inclusive = TRUE; 6034 if (curwin->w_p_wrap && curwin->w_width != 0) 6035 { 6036 curwin->w_curswant = MAXCOL; // so we stay at the end 6037 if (cap->count1 == 1) 6038 { 6039 int width1 = curwin->w_width - col_off; 6040 int width2 = width1 + curwin_col_off2(); 6041 6042 validate_virtcol(); 6043 i = width1 - 1; 6044 if (curwin->w_virtcol >= (colnr_T)width1) 6045 i += ((curwin->w_virtcol - width1) / width2 + 1) 6046 * width2; 6047 coladvance((colnr_T)i); 6048 6049 // Make sure we stick in this column. 6050 validate_virtcol(); 6051 curwin->w_curswant = curwin->w_virtcol; 6052 curwin->w_set_curswant = FALSE; 6053 if (curwin->w_cursor.col > 0 && curwin->w_p_wrap) 6054 { 6055 /* 6056 * Check for landing on a character that got split at 6057 * the end of the line. We do not want to advance to 6058 * the next screen line. 6059 */ 6060 if (curwin->w_virtcol > (colnr_T)i) 6061 --curwin->w_cursor.col; 6062 } 6063 } 6064 else if (nv_screengo(oap, FORWARD, cap->count1 - 1) == FAIL) 6065 clearopbeep(oap); 6066 } 6067 else 6068 { 6069 if (cap->count1 > 1) 6070 // if it fails, let the cursor still move to the last char 6071 (void)cursor_down(cap->count1 - 1, FALSE); 6072 6073 i = curwin->w_leftcol + curwin->w_width - col_off - 1; 6074 coladvance((colnr_T)i); 6075 6076 // Make sure we stick in this column. 6077 validate_virtcol(); 6078 curwin->w_curswant = curwin->w_virtcol; 6079 curwin->w_set_curswant = FALSE; 6080 } 6081 } 6082 break; 6083 6084 /* 6085 * "g*" and "g#", like "*" and "#" but without using "\<" and "\>" 6086 */ 6087 case '*': 6088 case '#': 6089 #if POUND != '#' 6090 case POUND: // pound sign (sometimes equal to '#') 6091 #endif 6092 case Ctrl_RSB: // :tag or :tselect for current identifier 6093 case ']': // :tselect for current identifier 6094 nv_ident(cap); 6095 break; 6096 6097 /* 6098 * ge and gE: go back to end of word 6099 */ 6100 case 'e': 6101 case 'E': 6102 oap->motion_type = MCHAR; 6103 curwin->w_set_curswant = TRUE; 6104 oap->inclusive = TRUE; 6105 if (bckend_word(cap->count1, cap->nchar == 'E', FALSE) == FAIL) 6106 clearopbeep(oap); 6107 break; 6108 6109 /* 6110 * "g CTRL-G": display info about cursor position 6111 */ 6112 case Ctrl_G: 6113 cursor_pos_info(NULL); 6114 break; 6115 6116 /* 6117 * "gi": start Insert at the last position. 6118 */ 6119 case 'i': 6120 if (curbuf->b_last_insert.lnum != 0) 6121 { 6122 curwin->w_cursor = curbuf->b_last_insert; 6123 check_cursor_lnum(); 6124 i = (int)STRLEN(ml_get_curline()); 6125 if (curwin->w_cursor.col > (colnr_T)i) 6126 { 6127 if (virtual_active()) 6128 curwin->w_cursor.coladd += curwin->w_cursor.col - i; 6129 curwin->w_cursor.col = i; 6130 } 6131 } 6132 cap->cmdchar = 'i'; 6133 nv_edit(cap); 6134 break; 6135 6136 /* 6137 * "gI": Start insert in column 1. 6138 */ 6139 case 'I': 6140 beginline(0); 6141 if (!checkclearopq(oap)) 6142 invoke_edit(cap, FALSE, 'g', FALSE); 6143 break; 6144 6145 #ifdef FEAT_SEARCHPATH 6146 /* 6147 * "gf": goto file, edit file under cursor 6148 * "]f" and "[f": can also be used. 6149 */ 6150 case 'f': 6151 case 'F': 6152 nv_gotofile(cap); 6153 break; 6154 #endif 6155 6156 // "g'm" and "g`m": jump to mark without setting pcmark 6157 case '\'': 6158 cap->arg = TRUE; 6159 // FALLTHROUGH 6160 case '`': 6161 nv_gomark(cap); 6162 break; 6163 6164 /* 6165 * "gs": Goto sleep. 6166 */ 6167 case 's': 6168 do_sleep(cap->count1 * 1000L); 6169 break; 6170 6171 /* 6172 * "ga": Display the ascii value of the character under the 6173 * cursor. It is displayed in decimal, hex, and octal. -- webb 6174 */ 6175 case 'a': 6176 do_ascii(NULL); 6177 break; 6178 6179 /* 6180 * "g8": Display the bytes used for the UTF-8 character under the 6181 * cursor. It is displayed in hex. 6182 * "8g8" finds illegal byte sequence. 6183 */ 6184 case '8': 6185 if (cap->count0 == 8) 6186 utf_find_illegal(); 6187 else 6188 show_utf8(); 6189 break; 6190 6191 // "g<": show scrollback text 6192 case '<': 6193 show_sb_text(); 6194 break; 6195 6196 /* 6197 * "gg": Goto the first line in file. With a count it goes to 6198 * that line number like for "G". -- webb 6199 */ 6200 case 'g': 6201 cap->arg = FALSE; 6202 nv_goto(cap); 6203 break; 6204 6205 /* 6206 * Two-character operators: 6207 * "gq" Format text 6208 * "gw" Format text and keep cursor position 6209 * "g~" Toggle the case of the text. 6210 * "gu" Change text to lower case. 6211 * "gU" Change text to upper case. 6212 * "g?" rot13 encoding 6213 * "g@" call 'operatorfunc' 6214 */ 6215 case 'q': 6216 case 'w': 6217 oap->cursor_start = curwin->w_cursor; 6218 // FALLTHROUGH 6219 case '~': 6220 case 'u': 6221 case 'U': 6222 case '?': 6223 case '@': 6224 nv_operator(cap); 6225 break; 6226 6227 /* 6228 * "gd": Find first occurrence of pattern under the cursor in the 6229 * current function 6230 * "gD": idem, but in the current file. 6231 */ 6232 case 'd': 6233 case 'D': 6234 nv_gd(oap, cap->nchar, (int)cap->count0); 6235 break; 6236 6237 /* 6238 * g<*Mouse> : <C-*mouse> 6239 */ 6240 case K_MIDDLEMOUSE: 6241 case K_MIDDLEDRAG: 6242 case K_MIDDLERELEASE: 6243 case K_LEFTMOUSE: 6244 case K_LEFTDRAG: 6245 case K_LEFTRELEASE: 6246 case K_MOUSEMOVE: 6247 case K_RIGHTMOUSE: 6248 case K_RIGHTDRAG: 6249 case K_RIGHTRELEASE: 6250 case K_X1MOUSE: 6251 case K_X1DRAG: 6252 case K_X1RELEASE: 6253 case K_X2MOUSE: 6254 case K_X2DRAG: 6255 case K_X2RELEASE: 6256 mod_mask = MOD_MASK_CTRL; 6257 (void)do_mouse(oap, cap->nchar, BACKWARD, cap->count1, 0); 6258 break; 6259 6260 case K_IGNORE: 6261 break; 6262 6263 /* 6264 * "gP" and "gp": same as "P" and "p" but leave cursor just after new text 6265 */ 6266 case 'p': 6267 case 'P': 6268 nv_put(cap); 6269 break; 6270 6271 #ifdef FEAT_BYTEOFF 6272 // "go": goto byte count from start of buffer 6273 case 'o': 6274 goto_byte(cap->count0); 6275 break; 6276 #endif 6277 6278 // "gQ": improved Ex mode 6279 case 'Q': 6280 if (text_locked()) 6281 { 6282 clearopbeep(cap->oap); 6283 text_locked_msg(); 6284 break; 6285 } 6286 6287 if (!checkclearopq(oap)) 6288 do_exmode(TRUE); 6289 break; 6290 6291 #ifdef FEAT_JUMPLIST 6292 case ',': 6293 nv_pcmark(cap); 6294 break; 6295 6296 case ';': 6297 cap->count1 = -cap->count1; 6298 nv_pcmark(cap); 6299 break; 6300 #endif 6301 6302 case 't': 6303 if (!checkclearop(oap)) 6304 goto_tabpage((int)cap->count0); 6305 break; 6306 case 'T': 6307 if (!checkclearop(oap)) 6308 goto_tabpage(-(int)cap->count1); 6309 break; 6310 6311 case '+': 6312 case '-': // "g+" and "g-": undo or redo along the timeline 6313 if (!checkclearopq(oap)) 6314 undo_time(cap->nchar == '-' ? -cap->count1 : cap->count1, 6315 FALSE, FALSE, FALSE); 6316 break; 6317 6318 default: 6319 clearopbeep(oap); 6320 break; 6321 } 6322 } 6323 6324 /* 6325 * Handle "o" and "O" commands. 6326 */ 6327 static void 6328 n_opencmd(cmdarg_T *cap) 6329 { 6330 #ifdef FEAT_CONCEAL 6331 linenr_T oldline = curwin->w_cursor.lnum; 6332 #endif 6333 6334 if (!checkclearopq(cap->oap)) 6335 { 6336 #ifdef FEAT_FOLDING 6337 if (cap->cmdchar == 'O') 6338 // Open above the first line of a folded sequence of lines 6339 (void)hasFolding(curwin->w_cursor.lnum, 6340 &curwin->w_cursor.lnum, NULL); 6341 else 6342 // Open below the last line of a folded sequence of lines 6343 (void)hasFolding(curwin->w_cursor.lnum, 6344 NULL, &curwin->w_cursor.lnum); 6345 #endif 6346 if (u_save((linenr_T)(curwin->w_cursor.lnum - 6347 (cap->cmdchar == 'O' ? 1 : 0)), 6348 (linenr_T)(curwin->w_cursor.lnum + 6349 (cap->cmdchar == 'o' ? 1 : 0)) 6350 ) == OK 6351 && open_line(cap->cmdchar == 'O' ? BACKWARD : FORWARD, 6352 has_format_option(FO_OPEN_COMS) ? OPENLINE_DO_COM : 0, 6353 0) == OK) 6354 { 6355 #ifdef FEAT_CONCEAL 6356 if (curwin->w_p_cole > 0 && oldline != curwin->w_cursor.lnum) 6357 redrawWinline(curwin, oldline); 6358 #endif 6359 #ifdef FEAT_SYN_HL 6360 if (curwin->w_p_cul) 6361 // force redraw of cursorline 6362 curwin->w_valid &= ~VALID_CROW; 6363 #endif 6364 // When '#' is in 'cpoptions' ignore the count. 6365 if (vim_strchr(p_cpo, CPO_HASH) != NULL) 6366 cap->count1 = 1; 6367 invoke_edit(cap, FALSE, cap->cmdchar, TRUE); 6368 } 6369 } 6370 } 6371 6372 /* 6373 * "." command: redo last change. 6374 */ 6375 static void 6376 nv_dot(cmdarg_T *cap) 6377 { 6378 if (!checkclearopq(cap->oap)) 6379 { 6380 /* 6381 * If "restart_edit" is TRUE, the last but one command is repeated 6382 * instead of the last command (inserting text). This is used for 6383 * CTRL-O <.> in insert mode. 6384 */ 6385 if (start_redo(cap->count0, restart_edit != 0 && !arrow_used) == FAIL) 6386 clearopbeep(cap->oap); 6387 } 6388 } 6389 6390 /* 6391 * CTRL-R: undo undo 6392 */ 6393 static void 6394 nv_redo(cmdarg_T *cap) 6395 { 6396 if (!checkclearopq(cap->oap)) 6397 { 6398 u_redo((int)cap->count1); 6399 curwin->w_set_curswant = TRUE; 6400 } 6401 } 6402 6403 /* 6404 * Handle "U" command. 6405 */ 6406 static void 6407 nv_Undo(cmdarg_T *cap) 6408 { 6409 // In Visual mode and typing "gUU" triggers an operator 6410 if (cap->oap->op_type == OP_UPPER || VIsual_active) 6411 { 6412 // translate "gUU" to "gUgU" 6413 cap->cmdchar = 'g'; 6414 cap->nchar = 'U'; 6415 nv_operator(cap); 6416 } 6417 else if (!checkclearopq(cap->oap)) 6418 { 6419 u_undoline(); 6420 curwin->w_set_curswant = TRUE; 6421 } 6422 } 6423 6424 /* 6425 * '~' command: If tilde is not an operator and Visual is off: swap case of a 6426 * single character. 6427 */ 6428 static void 6429 nv_tilde(cmdarg_T *cap) 6430 { 6431 if (!p_to && !VIsual_active && cap->oap->op_type != OP_TILDE) 6432 { 6433 #ifdef FEAT_JOB_CHANNEL 6434 if (bt_prompt(curbuf) && !prompt_curpos_editable()) 6435 { 6436 clearopbeep(cap->oap); 6437 return; 6438 } 6439 #endif 6440 n_swapchar(cap); 6441 } 6442 else 6443 nv_operator(cap); 6444 } 6445 6446 /* 6447 * Handle an operator command. 6448 * The actual work is done by do_pending_operator(). 6449 */ 6450 static void 6451 nv_operator(cmdarg_T *cap) 6452 { 6453 int op_type; 6454 6455 op_type = get_op_type(cap->cmdchar, cap->nchar); 6456 #ifdef FEAT_JOB_CHANNEL 6457 if (bt_prompt(curbuf) && op_is_change(op_type) && !prompt_curpos_editable()) 6458 { 6459 clearopbeep(cap->oap); 6460 return; 6461 } 6462 #endif 6463 6464 if (op_type == cap->oap->op_type) // double operator works on lines 6465 nv_lineop(cap); 6466 else if (!checkclearop(cap->oap)) 6467 { 6468 cap->oap->start = curwin->w_cursor; 6469 cap->oap->op_type = op_type; 6470 #ifdef FEAT_EVAL 6471 set_op_var(op_type); 6472 #endif 6473 } 6474 } 6475 6476 #ifdef FEAT_EVAL 6477 /* 6478 * Set v:operator to the characters for "optype". 6479 */ 6480 static void 6481 set_op_var(int optype) 6482 { 6483 char_u opchars[3]; 6484 6485 if (optype == OP_NOP) 6486 set_vim_var_string(VV_OP, NULL, 0); 6487 else 6488 { 6489 opchars[0] = get_op_char(optype); 6490 opchars[1] = get_extra_op_char(optype); 6491 opchars[2] = NUL; 6492 set_vim_var_string(VV_OP, opchars, -1); 6493 } 6494 } 6495 #endif 6496 6497 /* 6498 * Handle linewise operator "dd", "yy", etc. 6499 * 6500 * "_" is is a strange motion command that helps make operators more logical. 6501 * It is actually implemented, but not documented in the real Vi. This motion 6502 * command actually refers to "the current line". Commands like "dd" and "yy" 6503 * are really an alternate form of "d_" and "y_". It does accept a count, so 6504 * "d3_" works to delete 3 lines. 6505 */ 6506 static void 6507 nv_lineop(cmdarg_T *cap) 6508 { 6509 cap->oap->motion_type = MLINE; 6510 if (cursor_down(cap->count1 - 1L, cap->oap->op_type == OP_NOP) == FAIL) 6511 clearopbeep(cap->oap); 6512 else if ( (cap->oap->op_type == OP_DELETE // only with linewise motions 6513 && cap->oap->motion_force != 'v' 6514 && cap->oap->motion_force != Ctrl_V) 6515 || cap->oap->op_type == OP_LSHIFT 6516 || cap->oap->op_type == OP_RSHIFT) 6517 beginline(BL_SOL | BL_FIX); 6518 else if (cap->oap->op_type != OP_YANK) // 'Y' does not move cursor 6519 beginline(BL_WHITE | BL_FIX); 6520 } 6521 6522 /* 6523 * <Home> command. 6524 */ 6525 static void 6526 nv_home(cmdarg_T *cap) 6527 { 6528 // CTRL-HOME is like "gg" 6529 if (mod_mask & MOD_MASK_CTRL) 6530 nv_goto(cap); 6531 else 6532 { 6533 cap->count0 = 1; 6534 nv_pipe(cap); 6535 } 6536 ins_at_eol = FALSE; // Don't move cursor past eol (only necessary in a 6537 // one-character line). 6538 } 6539 6540 /* 6541 * "|" command. 6542 */ 6543 static void 6544 nv_pipe(cmdarg_T *cap) 6545 { 6546 cap->oap->motion_type = MCHAR; 6547 cap->oap->inclusive = FALSE; 6548 beginline(0); 6549 if (cap->count0 > 0) 6550 { 6551 coladvance((colnr_T)(cap->count0 - 1)); 6552 curwin->w_curswant = (colnr_T)(cap->count0 - 1); 6553 } 6554 else 6555 curwin->w_curswant = 0; 6556 // keep curswant at the column where we wanted to go, not where 6557 // we ended; differs if line is too short 6558 curwin->w_set_curswant = FALSE; 6559 } 6560 6561 /* 6562 * Handle back-word command "b" and "B". 6563 * cap->arg is 1 for "B" 6564 */ 6565 static void 6566 nv_bck_word(cmdarg_T *cap) 6567 { 6568 cap->oap->motion_type = MCHAR; 6569 cap->oap->inclusive = FALSE; 6570 curwin->w_set_curswant = TRUE; 6571 if (bck_word(cap->count1, cap->arg, FALSE) == FAIL) 6572 clearopbeep(cap->oap); 6573 #ifdef FEAT_FOLDING 6574 else if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP) 6575 foldOpenCursor(); 6576 #endif 6577 } 6578 6579 /* 6580 * Handle word motion commands "e", "E", "w" and "W". 6581 * cap->arg is TRUE for "E" and "W". 6582 */ 6583 static void 6584 nv_wordcmd(cmdarg_T *cap) 6585 { 6586 int n; 6587 int word_end; 6588 int flag = FALSE; 6589 pos_T startpos = curwin->w_cursor; 6590 6591 /* 6592 * Set inclusive for the "E" and "e" command. 6593 */ 6594 if (cap->cmdchar == 'e' || cap->cmdchar == 'E') 6595 word_end = TRUE; 6596 else 6597 word_end = FALSE; 6598 cap->oap->inclusive = word_end; 6599 6600 /* 6601 * "cw" and "cW" are a special case. 6602 */ 6603 if (!word_end && cap->oap->op_type == OP_CHANGE) 6604 { 6605 n = gchar_cursor(); 6606 if (n != NUL) // not an empty line 6607 { 6608 if (VIM_ISWHITE(n)) 6609 { 6610 /* 6611 * Reproduce a funny Vi behaviour: "cw" on a blank only 6612 * changes one character, not all blanks until the start of 6613 * the next word. Only do this when the 'w' flag is included 6614 * in 'cpoptions'. 6615 */ 6616 if (cap->count1 == 1 && vim_strchr(p_cpo, CPO_CW) != NULL) 6617 { 6618 cap->oap->inclusive = TRUE; 6619 cap->oap->motion_type = MCHAR; 6620 return; 6621 } 6622 } 6623 else 6624 { 6625 /* 6626 * This is a little strange. To match what the real Vi does, 6627 * we effectively map 'cw' to 'ce', and 'cW' to 'cE', provided 6628 * that we are not on a space or a TAB. This seems impolite 6629 * at first, but it's really more what we mean when we say 6630 * 'cw'. 6631 * Another strangeness: When standing on the end of a word 6632 * "ce" will change until the end of the next word, but "cw" 6633 * will change only one character! This is done by setting 6634 * flag. 6635 */ 6636 cap->oap->inclusive = TRUE; 6637 word_end = TRUE; 6638 flag = TRUE; 6639 } 6640 } 6641 } 6642 6643 cap->oap->motion_type = MCHAR; 6644 curwin->w_set_curswant = TRUE; 6645 if (word_end) 6646 n = end_word(cap->count1, cap->arg, flag, FALSE); 6647 else 6648 n = fwd_word(cap->count1, cap->arg, cap->oap->op_type != OP_NOP); 6649 6650 // Don't leave the cursor on the NUL past the end of line. Unless we 6651 // didn't move it forward. 6652 if (LT_POS(startpos, curwin->w_cursor)) 6653 adjust_cursor(cap->oap); 6654 6655 if (n == FAIL && cap->oap->op_type == OP_NOP) 6656 clearopbeep(cap->oap); 6657 else 6658 { 6659 adjust_for_sel(cap); 6660 #ifdef FEAT_FOLDING 6661 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP) 6662 foldOpenCursor(); 6663 #endif 6664 } 6665 } 6666 6667 /* 6668 * Used after a movement command: If the cursor ends up on the NUL after the 6669 * end of the line, may move it back to the last character and make the motion 6670 * inclusive. 6671 */ 6672 static void 6673 adjust_cursor(oparg_T *oap) 6674 { 6675 // The cursor cannot remain on the NUL when: 6676 // - the column is > 0 6677 // - not in Visual mode or 'selection' is "o" 6678 // - 'virtualedit' is not "all" and not "onemore". 6679 if (curwin->w_cursor.col > 0 && gchar_cursor() == NUL 6680 && (!VIsual_active || *p_sel == 'o') 6681 && !virtual_active() && (ve_flags & VE_ONEMORE) == 0) 6682 { 6683 --curwin->w_cursor.col; 6684 // prevent cursor from moving on the trail byte 6685 if (has_mbyte) 6686 mb_adjust_cursor(); 6687 oap->inclusive = TRUE; 6688 } 6689 } 6690 6691 /* 6692 * "0" and "^" commands. 6693 * cap->arg is the argument for beginline(). 6694 */ 6695 static void 6696 nv_beginline(cmdarg_T *cap) 6697 { 6698 cap->oap->motion_type = MCHAR; 6699 cap->oap->inclusive = FALSE; 6700 beginline(cap->arg); 6701 #ifdef FEAT_FOLDING 6702 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP) 6703 foldOpenCursor(); 6704 #endif 6705 ins_at_eol = FALSE; // Don't move cursor past eol (only necessary in a 6706 // one-character line). 6707 } 6708 6709 /* 6710 * In exclusive Visual mode, may include the last character. 6711 */ 6712 static void 6713 adjust_for_sel(cmdarg_T *cap) 6714 { 6715 if (VIsual_active && cap->oap->inclusive && *p_sel == 'e' 6716 && gchar_cursor() != NUL && LT_POS(VIsual, curwin->w_cursor)) 6717 { 6718 if (has_mbyte) 6719 inc_cursor(); 6720 else 6721 ++curwin->w_cursor.col; 6722 cap->oap->inclusive = FALSE; 6723 } 6724 } 6725 6726 /* 6727 * Exclude last character at end of Visual area for 'selection' == "exclusive". 6728 * Should check VIsual_mode before calling this. 6729 * Returns TRUE when backed up to the previous line. 6730 */ 6731 int 6732 unadjust_for_sel(void) 6733 { 6734 pos_T *pp; 6735 6736 if (*p_sel == 'e' && !EQUAL_POS(VIsual, curwin->w_cursor)) 6737 { 6738 if (LT_POS(VIsual, curwin->w_cursor)) 6739 pp = &curwin->w_cursor; 6740 else 6741 pp = &VIsual; 6742 if (pp->coladd > 0) 6743 --pp->coladd; 6744 else 6745 if (pp->col > 0) 6746 { 6747 --pp->col; 6748 mb_adjustpos(curbuf, pp); 6749 } 6750 else if (pp->lnum > 1) 6751 { 6752 --pp->lnum; 6753 pp->col = (colnr_T)STRLEN(ml_get(pp->lnum)); 6754 return TRUE; 6755 } 6756 } 6757 return FALSE; 6758 } 6759 6760 /* 6761 * SELECT key in Normal or Visual mode: end of Select mode mapping. 6762 */ 6763 static void 6764 nv_select(cmdarg_T *cap) 6765 { 6766 if (VIsual_active) 6767 VIsual_select = TRUE; 6768 else if (VIsual_reselect) 6769 { 6770 cap->nchar = 'v'; // fake "gv" command 6771 cap->arg = TRUE; 6772 nv_g_cmd(cap); 6773 } 6774 } 6775 6776 6777 /* 6778 * "G", "gg", CTRL-END, CTRL-HOME. 6779 * cap->arg is TRUE for "G". 6780 */ 6781 static void 6782 nv_goto(cmdarg_T *cap) 6783 { 6784 linenr_T lnum; 6785 6786 if (cap->arg) 6787 lnum = curbuf->b_ml.ml_line_count; 6788 else 6789 lnum = 1L; 6790 cap->oap->motion_type = MLINE; 6791 setpcmark(); 6792 6793 // When a count is given, use it instead of the default lnum 6794 if (cap->count0 != 0) 6795 lnum = cap->count0; 6796 if (lnum < 1L) 6797 lnum = 1L; 6798 else if (lnum > curbuf->b_ml.ml_line_count) 6799 lnum = curbuf->b_ml.ml_line_count; 6800 curwin->w_cursor.lnum = lnum; 6801 beginline(BL_SOL | BL_FIX); 6802 #ifdef FEAT_FOLDING 6803 if ((fdo_flags & FDO_JUMP) && KeyTyped && cap->oap->op_type == OP_NOP) 6804 foldOpenCursor(); 6805 #endif 6806 } 6807 6808 /* 6809 * CTRL-\ in Normal mode. 6810 */ 6811 static void 6812 nv_normal(cmdarg_T *cap) 6813 { 6814 if (cap->nchar == Ctrl_N || cap->nchar == Ctrl_G) 6815 { 6816 clearop(cap->oap); 6817 if (restart_edit != 0 && mode_displayed) 6818 clear_cmdline = TRUE; // unshow mode later 6819 restart_edit = 0; 6820 #ifdef FEAT_CMDWIN 6821 if (cmdwin_type != 0) 6822 cmdwin_result = Ctrl_C; 6823 #endif 6824 if (VIsual_active) 6825 { 6826 end_visual_mode(); // stop Visual 6827 redraw_curbuf_later(INVERTED); 6828 } 6829 // CTRL-\ CTRL-G restarts Insert mode when 'insertmode' is set. 6830 if (cap->nchar == Ctrl_G && p_im) 6831 restart_edit = 'a'; 6832 } 6833 else 6834 clearopbeep(cap->oap); 6835 } 6836 6837 /* 6838 * ESC in Normal mode: beep, but don't flush buffers. 6839 * Don't even beep if we are canceling a command. 6840 */ 6841 static void 6842 nv_esc(cmdarg_T *cap) 6843 { 6844 int no_reason; 6845 6846 no_reason = (cap->oap->op_type == OP_NOP 6847 && cap->opcount == 0 6848 && cap->count0 == 0 6849 && cap->oap->regname == 0 6850 && !p_im); 6851 6852 if (cap->arg) // TRUE for CTRL-C 6853 { 6854 if (restart_edit == 0 6855 #ifdef FEAT_CMDWIN 6856 && cmdwin_type == 0 6857 #endif 6858 && !VIsual_active 6859 && no_reason) 6860 { 6861 if (anyBufIsChanged()) 6862 msg(_("Type :qa! and press <Enter> to abandon all changes and exit Vim")); 6863 else 6864 msg(_("Type :qa and press <Enter> to exit Vim")); 6865 } 6866 6867 // Don't reset "restart_edit" when 'insertmode' is set, it won't be 6868 // set again below when halfway a mapping. 6869 if (!p_im) 6870 restart_edit = 0; 6871 #ifdef FEAT_CMDWIN 6872 if (cmdwin_type != 0) 6873 { 6874 cmdwin_result = K_IGNORE; 6875 got_int = FALSE; // don't stop executing autocommands et al. 6876 return; 6877 } 6878 #endif 6879 } 6880 6881 if (VIsual_active) 6882 { 6883 end_visual_mode(); // stop Visual 6884 check_cursor_col(); // make sure cursor is not beyond EOL 6885 curwin->w_set_curswant = TRUE; 6886 redraw_curbuf_later(INVERTED); 6887 } 6888 else if (no_reason) 6889 vim_beep(BO_ESC); 6890 clearop(cap->oap); 6891 6892 // A CTRL-C is often used at the start of a menu. When 'insertmode' is 6893 // set return to Insert mode afterwards. 6894 if (restart_edit == 0 && goto_im() && ex_normal_busy == 0) 6895 restart_edit = 'a'; 6896 } 6897 6898 /* 6899 * Move the cursor for the "A" command. 6900 */ 6901 void 6902 set_cursor_for_append_to_line(void) 6903 { 6904 curwin->w_set_curswant = TRUE; 6905 if (ve_flags == VE_ALL) 6906 { 6907 int save_State = State; 6908 6909 // Pretend Insert mode here to allow the cursor on the 6910 // character past the end of the line 6911 State = INSERT; 6912 coladvance((colnr_T)MAXCOL); 6913 State = save_State; 6914 } 6915 else 6916 curwin->w_cursor.col += (colnr_T)STRLEN(ml_get_cursor()); 6917 } 6918 6919 /* 6920 * Handle "A", "a", "I", "i" and <Insert> commands. 6921 * Also handle K_PS, start bracketed paste. 6922 */ 6923 static void 6924 nv_edit(cmdarg_T *cap) 6925 { 6926 // <Insert> is equal to "i" 6927 if (cap->cmdchar == K_INS || cap->cmdchar == K_KINS) 6928 cap->cmdchar = 'i'; 6929 6930 // in Visual mode "A" and "I" are an operator 6931 if (VIsual_active && (cap->cmdchar == 'A' || cap->cmdchar == 'I')) 6932 { 6933 #ifdef FEAT_TERMINAL 6934 if (term_in_normal_mode()) 6935 { 6936 end_visual_mode(); 6937 clearop(cap->oap); 6938 term_enter_job_mode(); 6939 return; 6940 } 6941 #endif 6942 v_visop(cap); 6943 } 6944 6945 // in Visual mode and after an operator "a" and "i" are for text objects 6946 else if ((cap->cmdchar == 'a' || cap->cmdchar == 'i') 6947 && (cap->oap->op_type != OP_NOP || VIsual_active)) 6948 { 6949 #ifdef FEAT_TEXTOBJ 6950 nv_object(cap); 6951 #else 6952 clearopbeep(cap->oap); 6953 #endif 6954 } 6955 #ifdef FEAT_TERMINAL 6956 else if (term_in_normal_mode()) 6957 { 6958 clearop(cap->oap); 6959 term_enter_job_mode(); 6960 return; 6961 } 6962 #endif 6963 else if (!curbuf->b_p_ma && !p_im) 6964 { 6965 // Only give this error when 'insertmode' is off. 6966 emsg(_(e_modifiable)); 6967 clearop(cap->oap); 6968 if (cap->cmdchar == K_PS) 6969 // drop the pasted text 6970 bracketed_paste(PASTE_INSERT, TRUE, NULL); 6971 } 6972 else if (cap->cmdchar == K_PS && VIsual_active) 6973 { 6974 pos_T old_pos = curwin->w_cursor; 6975 pos_T old_visual = VIsual; 6976 6977 // In Visual mode the selected text is deleted. 6978 if (VIsual_mode == 'V' || curwin->w_cursor.lnum != VIsual.lnum) 6979 { 6980 shift_delete_registers(); 6981 cap->oap->regname = '1'; 6982 } 6983 else 6984 cap->oap->regname = '-'; 6985 cap->cmdchar = 'd'; 6986 cap->nchar = NUL; 6987 nv_operator(cap); 6988 do_pending_operator(cap, 0, FALSE); 6989 cap->cmdchar = K_PS; 6990 6991 // When the last char in the line was deleted then append. Detect this 6992 // by checking if the cursor moved to before the Visual area. 6993 if (*ml_get_cursor() != NUL && LT_POS(curwin->w_cursor, old_pos) 6994 && LT_POS(curwin->w_cursor, old_visual)) 6995 inc_cursor(); 6996 6997 // Insert to replace the deleted text with the pasted text. 6998 invoke_edit(cap, FALSE, cap->cmdchar, FALSE); 6999 } 7000 else if (!checkclearopq(cap->oap)) 7001 { 7002 switch (cap->cmdchar) 7003 { 7004 case 'A': // "A"ppend after the line 7005 set_cursor_for_append_to_line(); 7006 break; 7007 7008 case 'I': // "I"nsert before the first non-blank 7009 if (vim_strchr(p_cpo, CPO_INSEND) == NULL) 7010 beginline(BL_WHITE); 7011 else 7012 beginline(BL_WHITE|BL_FIX); 7013 break; 7014 7015 case K_PS: 7016 // Bracketed paste works like "a"ppend, unless the cursor is in 7017 // the first column, then it inserts. 7018 if (curwin->w_cursor.col == 0) 7019 break; 7020 // FALLTHROUGH 7021 7022 case 'a': // "a"ppend is like "i"nsert on the next character. 7023 // increment coladd when in virtual space, increment the 7024 // column otherwise, also to append after an unprintable char 7025 if (virtual_active() 7026 && (curwin->w_cursor.coladd > 0 7027 || *ml_get_cursor() == NUL 7028 || *ml_get_cursor() == TAB)) 7029 curwin->w_cursor.coladd++; 7030 else if (*ml_get_cursor() != NUL) 7031 inc_cursor(); 7032 break; 7033 } 7034 7035 if (curwin->w_cursor.coladd && cap->cmdchar != 'A') 7036 { 7037 int save_State = State; 7038 7039 // Pretend Insert mode here to allow the cursor on the 7040 // character past the end of the line 7041 State = INSERT; 7042 coladvance(getviscol()); 7043 State = save_State; 7044 } 7045 7046 invoke_edit(cap, FALSE, cap->cmdchar, FALSE); 7047 } 7048 else if (cap->cmdchar == K_PS) 7049 // drop the pasted text 7050 bracketed_paste(PASTE_INSERT, TRUE, NULL); 7051 } 7052 7053 /* 7054 * Invoke edit() and take care of "restart_edit" and the return value. 7055 */ 7056 static void 7057 invoke_edit( 7058 cmdarg_T *cap, 7059 int repl, // "r" or "gr" command 7060 int cmd, 7061 int startln) 7062 { 7063 int restart_edit_save = 0; 7064 7065 // Complicated: When the user types "a<C-O>a" we don't want to do Insert 7066 // mode recursively. But when doing "a<C-O>." or "a<C-O>rx" we do allow 7067 // it. 7068 if (repl || !stuff_empty()) 7069 restart_edit_save = restart_edit; 7070 else 7071 restart_edit_save = 0; 7072 7073 // Always reset "restart_edit", this is not a restarted edit. 7074 restart_edit = 0; 7075 7076 if (edit(cmd, startln, cap->count1)) 7077 cap->retval |= CA_COMMAND_BUSY; 7078 7079 if (restart_edit == 0) 7080 restart_edit = restart_edit_save; 7081 } 7082 7083 #ifdef FEAT_TEXTOBJ 7084 /* 7085 * "a" or "i" while an operator is pending or in Visual mode: object motion. 7086 */ 7087 static void 7088 nv_object( 7089 cmdarg_T *cap) 7090 { 7091 int flag; 7092 int include; 7093 char_u *mps_save; 7094 7095 if (cap->cmdchar == 'i') 7096 include = FALSE; // "ix" = inner object: exclude white space 7097 else 7098 include = TRUE; // "ax" = an object: include white space 7099 7100 // Make sure (), [], {} and <> are in 'matchpairs' 7101 mps_save = curbuf->b_p_mps; 7102 curbuf->b_p_mps = (char_u *)"(:),{:},[:],<:>"; 7103 7104 switch (cap->nchar) 7105 { 7106 case 'w': // "aw" = a word 7107 flag = current_word(cap->oap, cap->count1, include, FALSE); 7108 break; 7109 case 'W': // "aW" = a WORD 7110 flag = current_word(cap->oap, cap->count1, include, TRUE); 7111 break; 7112 case 'b': // "ab" = a braces block 7113 case '(': 7114 case ')': 7115 flag = current_block(cap->oap, cap->count1, include, '(', ')'); 7116 break; 7117 case 'B': // "aB" = a Brackets block 7118 case '{': 7119 case '}': 7120 flag = current_block(cap->oap, cap->count1, include, '{', '}'); 7121 break; 7122 case '[': // "a[" = a [] block 7123 case ']': 7124 flag = current_block(cap->oap, cap->count1, include, '[', ']'); 7125 break; 7126 case '<': // "a<" = a <> block 7127 case '>': 7128 flag = current_block(cap->oap, cap->count1, include, '<', '>'); 7129 break; 7130 case 't': // "at" = a tag block (xml and html) 7131 // Do not adjust oap->end in do_pending_operator() 7132 // otherwise there are different results for 'dit' 7133 // (note leading whitespace in last line): 7134 // 1) <b> 2) <b> 7135 // foobar foobar 7136 // </b> </b> 7137 cap->retval |= CA_NO_ADJ_OP_END; 7138 flag = current_tagblock(cap->oap, cap->count1, include); 7139 break; 7140 case 'p': // "ap" = a paragraph 7141 flag = current_par(cap->oap, cap->count1, include, 'p'); 7142 break; 7143 case 's': // "as" = a sentence 7144 flag = current_sent(cap->oap, cap->count1, include); 7145 break; 7146 case '"': // "a"" = a double quoted string 7147 case '\'': // "a'" = a single quoted string 7148 case '`': // "a`" = a backtick quoted string 7149 flag = current_quote(cap->oap, cap->count1, include, 7150 cap->nchar); 7151 break; 7152 #if 0 // TODO 7153 case 'S': // "aS" = a section 7154 case 'f': // "af" = a filename 7155 case 'u': // "au" = a URL 7156 #endif 7157 default: 7158 flag = FAIL; 7159 break; 7160 } 7161 7162 curbuf->b_p_mps = mps_save; 7163 if (flag == FAIL) 7164 clearopbeep(cap->oap); 7165 adjust_cursor_col(); 7166 curwin->w_set_curswant = TRUE; 7167 } 7168 #endif 7169 7170 /* 7171 * "q" command: Start/stop recording. 7172 * "q:", "q/", "q?": edit command-line in command-line window. 7173 */ 7174 static void 7175 nv_record(cmdarg_T *cap) 7176 { 7177 if (cap->oap->op_type == OP_FORMAT) 7178 { 7179 // "gqq" is the same as "gqgq": format line 7180 cap->cmdchar = 'g'; 7181 cap->nchar = 'q'; 7182 nv_operator(cap); 7183 } 7184 else if (!checkclearop(cap->oap)) 7185 { 7186 #ifdef FEAT_CMDWIN 7187 if (cap->nchar == ':' || cap->nchar == '/' || cap->nchar == '?') 7188 { 7189 stuffcharReadbuff(cap->nchar); 7190 stuffcharReadbuff(K_CMDWIN); 7191 } 7192 else 7193 #endif 7194 // (stop) recording into a named register, unless executing a 7195 // register 7196 if (reg_executing == 0 && do_record(cap->nchar) == FAIL) 7197 clearopbeep(cap->oap); 7198 } 7199 } 7200 7201 /* 7202 * Handle the "@r" command. 7203 */ 7204 static void 7205 nv_at(cmdarg_T *cap) 7206 { 7207 if (checkclearop(cap->oap)) 7208 return; 7209 #ifdef FEAT_EVAL 7210 if (cap->nchar == '=') 7211 { 7212 if (get_expr_register() == NUL) 7213 return; 7214 } 7215 #endif 7216 while (cap->count1-- && !got_int) 7217 { 7218 if (do_execreg(cap->nchar, FALSE, FALSE, FALSE) == FAIL) 7219 { 7220 clearopbeep(cap->oap); 7221 break; 7222 } 7223 line_breakcheck(); 7224 } 7225 } 7226 7227 /* 7228 * Handle the CTRL-U and CTRL-D commands. 7229 */ 7230 static void 7231 nv_halfpage(cmdarg_T *cap) 7232 { 7233 if ((cap->cmdchar == Ctrl_U && curwin->w_cursor.lnum == 1) 7234 || (cap->cmdchar == Ctrl_D 7235 && curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)) 7236 clearopbeep(cap->oap); 7237 else if (!checkclearop(cap->oap)) 7238 halfpage(cap->cmdchar == Ctrl_D, cap->count0); 7239 } 7240 7241 /* 7242 * Handle "J" or "gJ" command. 7243 */ 7244 static void 7245 nv_join(cmdarg_T *cap) 7246 { 7247 if (VIsual_active) // join the visual lines 7248 nv_operator(cap); 7249 else if (!checkclearop(cap->oap)) 7250 { 7251 if (cap->count0 <= 1) 7252 cap->count0 = 2; // default for join is two lines! 7253 if (curwin->w_cursor.lnum + cap->count0 - 1 > 7254 curbuf->b_ml.ml_line_count) 7255 { 7256 // can't join when on the last line 7257 if (cap->count0 <= 2) 7258 { 7259 clearopbeep(cap->oap); 7260 return; 7261 } 7262 cap->count0 = curbuf->b_ml.ml_line_count 7263 - curwin->w_cursor.lnum + 1; 7264 } 7265 7266 prep_redo(cap->oap->regname, cap->count0, 7267 NUL, cap->cmdchar, NUL, NUL, cap->nchar); 7268 (void)do_join(cap->count0, cap->nchar == NUL, TRUE, TRUE, TRUE); 7269 } 7270 } 7271 7272 /* 7273 * "P", "gP", "p" and "gp" commands. 7274 */ 7275 static void 7276 nv_put(cmdarg_T *cap) 7277 { 7278 nv_put_opt(cap, FALSE); 7279 } 7280 7281 /* 7282 * "P", "gP", "p" and "gp" commands. 7283 * "fix_indent" is TRUE for "[p", "[P", "]p" and "]P". 7284 */ 7285 static void 7286 nv_put_opt(cmdarg_T *cap, int fix_indent) 7287 { 7288 int regname = 0; 7289 void *reg1 = NULL, *reg2 = NULL; 7290 int empty = FALSE; 7291 int was_visual = FALSE; 7292 int dir; 7293 int flags = 0; 7294 7295 if (cap->oap->op_type != OP_NOP) 7296 { 7297 #ifdef FEAT_DIFF 7298 // "dp" is ":diffput" 7299 if (cap->oap->op_type == OP_DELETE && cap->cmdchar == 'p') 7300 { 7301 clearop(cap->oap); 7302 nv_diffgetput(TRUE, cap->opcount); 7303 } 7304 else 7305 #endif 7306 clearopbeep(cap->oap); 7307 } 7308 #ifdef FEAT_JOB_CHANNEL 7309 else if (bt_prompt(curbuf) && !prompt_curpos_editable()) 7310 { 7311 clearopbeep(cap->oap); 7312 } 7313 #endif 7314 else 7315 { 7316 if (fix_indent) 7317 { 7318 dir = (cap->cmdchar == ']' && cap->nchar == 'p') 7319 ? FORWARD : BACKWARD; 7320 flags |= PUT_FIXINDENT; 7321 } 7322 else 7323 dir = (cap->cmdchar == 'P' 7324 || (cap->cmdchar == 'g' && cap->nchar == 'P')) 7325 ? BACKWARD : FORWARD; 7326 prep_redo_cmd(cap); 7327 if (cap->cmdchar == 'g') 7328 flags |= PUT_CURSEND; 7329 7330 if (VIsual_active) 7331 { 7332 // Putting in Visual mode: The put text replaces the selected 7333 // text. First delete the selected text, then put the new text. 7334 // Need to save and restore the registers that the delete 7335 // overwrites if the old contents is being put. 7336 was_visual = TRUE; 7337 regname = cap->oap->regname; 7338 #ifdef FEAT_CLIPBOARD 7339 adjust_clip_reg(®name); 7340 #endif 7341 if (regname == 0 || regname == '"' 7342 || VIM_ISDIGIT(regname) || regname == '-' 7343 #ifdef FEAT_CLIPBOARD 7344 || (clip_unnamed && (regname == '*' || regname == '+')) 7345 #endif 7346 7347 ) 7348 { 7349 // The delete is going to overwrite the register we want to 7350 // put, save it first. 7351 reg1 = get_register(regname, TRUE); 7352 } 7353 7354 // Now delete the selected text. Avoid messages here. 7355 cap->cmdchar = 'd'; 7356 cap->nchar = NUL; 7357 cap->oap->regname = NUL; 7358 ++msg_silent; 7359 nv_operator(cap); 7360 do_pending_operator(cap, 0, FALSE); 7361 empty = (curbuf->b_ml.ml_flags & ML_EMPTY); 7362 --msg_silent; 7363 7364 // delete PUT_LINE_BACKWARD; 7365 cap->oap->regname = regname; 7366 7367 if (reg1 != NULL) 7368 { 7369 // Delete probably changed the register we want to put, save 7370 // it first. Then put back what was there before the delete. 7371 reg2 = get_register(regname, FALSE); 7372 put_register(regname, reg1); 7373 } 7374 7375 // When deleted a linewise Visual area, put the register as 7376 // lines to avoid it joined with the next line. When deletion was 7377 // characterwise, split a line when putting lines. 7378 if (VIsual_mode == 'V') 7379 flags |= PUT_LINE; 7380 else if (VIsual_mode == 'v') 7381 flags |= PUT_LINE_SPLIT; 7382 if (VIsual_mode == Ctrl_V && dir == FORWARD) 7383 flags |= PUT_LINE_FORWARD; 7384 dir = BACKWARD; 7385 if ((VIsual_mode != 'V' 7386 && curwin->w_cursor.col < curbuf->b_op_start.col) 7387 || (VIsual_mode == 'V' 7388 && curwin->w_cursor.lnum < curbuf->b_op_start.lnum)) 7389 // cursor is at the end of the line or end of file, put 7390 // forward. 7391 dir = FORWARD; 7392 // May have been reset in do_put(). 7393 VIsual_active = TRUE; 7394 } 7395 do_put(cap->oap->regname, dir, cap->count1, flags); 7396 7397 // If a register was saved, put it back now. 7398 if (reg2 != NULL) 7399 put_register(regname, reg2); 7400 7401 // What to reselect with "gv"? Selecting the just put text seems to 7402 // be the most useful, since the original text was removed. 7403 if (was_visual) 7404 { 7405 curbuf->b_visual.vi_start = curbuf->b_op_start; 7406 curbuf->b_visual.vi_end = curbuf->b_op_end; 7407 // need to adjust cursor position 7408 if (*p_sel == 'e') 7409 inc(&curbuf->b_visual.vi_end); 7410 } 7411 7412 // When all lines were selected and deleted do_put() leaves an empty 7413 // line that needs to be deleted now. 7414 if (empty && *ml_get(curbuf->b_ml.ml_line_count) == NUL) 7415 { 7416 ml_delete_flags(curbuf->b_ml.ml_line_count, ML_DEL_MESSAGE); 7417 deleted_lines(curbuf->b_ml.ml_line_count + 1, 1); 7418 7419 // If the cursor was in that line, move it to the end of the last 7420 // line. 7421 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count) 7422 { 7423 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count; 7424 coladvance((colnr_T)MAXCOL); 7425 } 7426 } 7427 auto_format(FALSE, TRUE); 7428 } 7429 } 7430 7431 /* 7432 * "o" and "O" commands. 7433 */ 7434 static void 7435 nv_open(cmdarg_T *cap) 7436 { 7437 #ifdef FEAT_DIFF 7438 // "do" is ":diffget" 7439 if (cap->oap->op_type == OP_DELETE && cap->cmdchar == 'o') 7440 { 7441 clearop(cap->oap); 7442 nv_diffgetput(FALSE, cap->opcount); 7443 } 7444 else 7445 #endif 7446 if (VIsual_active) // switch start and end of visual 7447 v_swap_corners(cap->cmdchar); 7448 #ifdef FEAT_JOB_CHANNEL 7449 else if (bt_prompt(curbuf)) 7450 clearopbeep(cap->oap); 7451 #endif 7452 else 7453 n_opencmd(cap); 7454 } 7455 7456 #ifdef FEAT_NETBEANS_INTG 7457 static void 7458 nv_nbcmd(cmdarg_T *cap) 7459 { 7460 netbeans_keycommand(cap->nchar); 7461 } 7462 #endif 7463 7464 #ifdef FEAT_DND 7465 static void 7466 nv_drop(cmdarg_T *cap UNUSED) 7467 { 7468 do_put('~', BACKWARD, 1L, PUT_CURSEND); 7469 } 7470 #endif 7471 7472 /* 7473 * Trigger CursorHold event. 7474 * When waiting for a character for 'updatetime' K_CURSORHOLD is put in the 7475 * input buffer. "did_cursorhold" is set to avoid retriggering. 7476 */ 7477 static void 7478 nv_cursorhold(cmdarg_T *cap) 7479 { 7480 apply_autocmds(EVENT_CURSORHOLD, NULL, NULL, FALSE, curbuf); 7481 did_cursorhold = TRUE; 7482 cap->retval |= CA_COMMAND_BUSY; // don't call edit() now 7483 } 7484