vi_mode.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:29k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* vi_mode.c -- A vi emulation mode for Bash.
  2.    Derived from code written by Jeff Sparkes (jsparkes@bnr.ca).  */
  3. /* Copyright (C) 1987, 1989, 1992 Free Software Foundation, Inc.
  4.    This file is part of the GNU Readline Library, a library for
  5.    reading lines of text with interactive input and history editing.
  6.    The GNU Readline Library is free software; you can redistribute it
  7.    and/or modify it under the terms of the GNU General Public License
  8.    as published by the Free Software Foundation; either version 1, or
  9.    (at your option) any later version.
  10.    The GNU Readline Library is distributed in the hope that it will be
  11.    useful, but WITHOUT ANY WARRANTY; without even the implied warranty
  12.    of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.    GNU General Public License for more details.
  14.    The GNU General Public License is often shipped with GNU software, and
  15.    is generally kept in a file called COPYING or LICENSE.  If you do not
  16.    have a copy of the license, write to the Free Software Foundation,
  17.    675 Mass Ave, Cambridge, MA 02139, USA. */
  18. #define READLINE_LIBRARY
  19. /* **************************************************************** */
  20. /*     */
  21. /* VI Emulation Mode     */
  22. /*     */
  23. /* **************************************************************** */
  24. #include "rlconf.h"
  25. #if defined (VI_MODE)
  26. #if defined (HAVE_CONFIG_H)
  27. #  include <config.h>
  28. #endif
  29. #include <sys/types.h>
  30. #if defined (HAVE_STDLIB_H)
  31. #  include <stdlib.h>
  32. #else
  33. #  include "ansi_stdlib.h"
  34. #endif /* HAVE_STDLIB_H */
  35. #if defined (HAVE_UNISTD_H)
  36. #  include <unistd.h>
  37. #endif
  38. #include <stdio.h>
  39. /* Some standard library routines. */
  40. #include "rldefs.h"
  41. #include "readline.h"
  42. #include "history.h"
  43. #ifndef _rl_digit_p
  44. #define _rl_digit_p(c)  ((c) >= '0' && (c) <= '9')
  45. #endif
  46. #ifndef _rl_digit_value
  47. #define _rl_digit_value(c) ((c) - '0')
  48. #endif
  49. #ifndef member
  50. #define member(c, s) ((c) ? (char *)strchr ((s), (c)) != (char *)NULL : 0)
  51. #endif
  52. #ifndef isident
  53. #define isident(c) ((_rl_pure_alphabetic (c) || _rl_digit_p (c) || c == '_'))
  54. #endif
  55. #ifndef exchange
  56. #define exchange(x, y) do {int temp = x; x = y; y = temp;} while (0)
  57. #endif
  58. extern char *xmalloc (), *xrealloc ();
  59. /* Variables imported from readline.c */
  60. extern int rl_point, rl_end, rl_mark;
  61. extern FILE *rl_instream;
  62. extern int rl_line_buffer_len, rl_explicit_arg, rl_numeric_arg;
  63. extern Keymap _rl_keymap;
  64. extern char *rl_prompt;
  65. extern char *rl_line_buffer;
  66. extern int rl_arg_sign;
  67. extern int _rl_doing_an_undo;
  68. extern int _rl_undo_group_level;
  69. extern void _rl_dispatch ();
  70. extern int _rl_char_search_internal ();
  71. extern void rl_extend_line_buffer ();
  72. extern int rl_vi_check ();
  73. /* Non-zero means enter insertion mode. */
  74. static int _rl_vi_doing_insert;
  75. /* Command keys which do movement for xxx_to commands. */
  76. static char *vi_motion = " hl^$0ftFt;,%wbeWBE|";
  77. /* Keymap used for vi replace characters.  Created dynamically since
  78.    rarely used. */
  79. static Keymap vi_replace_map;
  80. /* The number of characters inserted in the last replace operation. */
  81. static int vi_replace_count;
  82. /* If non-zero, we have text inserted after a c[motion] command that put
  83.    us implicitly into insert mode.  Some people want this text to be
  84.    attached to the command so that it is `redoable' with `.'. */
  85. static int vi_continued_command;
  86. static char *vi_insert_buffer;
  87. static int vi_insert_buffer_size;
  88. static int _rl_vi_last_command = 'i'; /* default `.' puts you in insert mode */
  89. static int _rl_vi_last_repeat = 1;
  90. static int _rl_vi_last_arg_sign = 1;
  91. static int _rl_vi_last_motion;
  92. static int _rl_vi_last_search_char;
  93. static int _rl_vi_last_replacement;
  94. static int _rl_vi_last_key_before_insert;
  95. static int vi_redoing;
  96. /* Text modification commands.  These are the `redoable' commands. */
  97. static char *vi_textmod = "_*\AaIiCcDdPpYyRrSsXx~";
  98. /* Arrays for the saved marks. */
  99. static int vi_mark_chars[27];
  100. static int rl_digit_loop1 ();
  101. void
  102. _rl_vi_initialize_line ()
  103. {
  104.   register int i;
  105.   for (i = 0; i < sizeof (vi_mark_chars) / sizeof (int); i++)
  106.     vi_mark_chars[i] = -1;
  107. }
  108. void
  109. _rl_vi_reset_last ()
  110. {
  111.   _rl_vi_last_command = 'i';
  112.   _rl_vi_last_repeat = 1;
  113.   _rl_vi_last_arg_sign = 1;
  114.   _rl_vi_last_motion = 0;
  115. }
  116. void
  117. _rl_vi_set_last (key, repeat, sign)
  118.      int key, repeat, sign;
  119. {
  120.   _rl_vi_last_command = key;
  121.   _rl_vi_last_repeat = repeat;
  122.   _rl_vi_last_arg_sign = sign;
  123. }
  124. /* Is the command C a VI mode text modification command? */
  125. int
  126. _rl_vi_textmod_command (c)
  127.      int c;
  128. {
  129.   return (member (c, vi_textmod));
  130. }
  131. static void
  132. _rl_vi_stuff_insert (count)
  133.      int count;
  134. {
  135.   rl_begin_undo_group ();
  136.   while (count--)
  137.     rl_insert_text (vi_insert_buffer);
  138.   rl_end_undo_group ();
  139. }
  140. /* Bound to `.'.  Called from command mode, so we know that we have to
  141.    redo a text modification command.  The default for _rl_vi_last_command
  142.    puts you back into insert mode. */
  143. int
  144. rl_vi_redo (count, c)
  145.      int count, c;
  146. {
  147.   if (!rl_explicit_arg)
  148.     {
  149.       rl_numeric_arg = _rl_vi_last_repeat;
  150.       rl_arg_sign = _rl_vi_last_arg_sign;
  151.     }
  152.   vi_redoing = 1;
  153.   /* If we're redoing an insert with `i', stuff in the inserted text
  154.      and do not go into insertion mode. */
  155.   if (_rl_vi_last_command == 'i' && vi_insert_buffer && *vi_insert_buffer)
  156.     {
  157.       _rl_vi_stuff_insert (count);
  158.       /* And back up point over the last character inserted. */
  159.       if (rl_point > 0)
  160. rl_point--;
  161.     }
  162.   else
  163.     _rl_dispatch (_rl_vi_last_command, _rl_keymap);
  164.   vi_redoing = 0;
  165.   return (0);
  166. }
  167. /* A placeholder for further expansion. */
  168. int
  169. rl_vi_undo (count, key)
  170.      int count, key;
  171. {
  172.   return (rl_undo_command (count, key));
  173. }
  174.     
  175. /* Yank the nth arg from the previous line into this line at point. */
  176. int
  177. rl_vi_yank_arg (count, key)
  178.      int count, key;
  179. {
  180.   /* Readline thinks that the first word on a line is the 0th, while vi
  181.      thinks the first word on a line is the 1st.  Compensate. */
  182.   if (rl_explicit_arg)
  183.     rl_yank_nth_arg (count - 1, 0);
  184.   else
  185.     rl_yank_nth_arg ('$', 0);
  186.   return (0);
  187. }
  188. /* With an argument, move back that many history lines, else move to the
  189.    beginning of history. */
  190. int
  191. rl_vi_fetch_history (count, c)
  192.      int count, c;
  193. {
  194.   int wanted;
  195.   /* Giving an argument of n means we want the nth command in the history
  196.      file.  The command number is interpreted the same way that the bash
  197.      `history' command does it -- that is, giving an argument count of 450
  198.      to this command would get the command listed as number 450 in the
  199.      output of `history'. */
  200.   if (rl_explicit_arg)
  201.     {
  202.       wanted = history_base + where_history () - count;
  203.       if (wanted <= 0)
  204.         rl_beginning_of_history (0, 0);
  205.       else
  206.         rl_get_previous_history (wanted, c);
  207.     }
  208.   else
  209.     rl_beginning_of_history (count, 0);
  210.   return (0);
  211. }
  212. /* Search again for the last thing searched for. */
  213. int
  214. rl_vi_search_again (count, key)
  215.      int count, key;
  216. {
  217.   switch (key)
  218.     {
  219.     case 'n':
  220.       rl_noninc_reverse_search_again (count, key);
  221.       break;
  222.     case 'N':
  223.       rl_noninc_forward_search_again (count, key);
  224.       break;
  225.     }
  226.   return (0);
  227. }
  228. /* Do a vi style search. */
  229. int
  230. rl_vi_search (count, key)
  231.      int count, key;
  232. {
  233.   switch (key)
  234.     {
  235.     case '?':
  236.       rl_noninc_forward_search (count, key);
  237.       break;
  238.     case '/':
  239.       rl_noninc_reverse_search (count, key);
  240.       break;
  241.     default:
  242.       ding ();
  243.       break;
  244.     }
  245.   return (0);
  246. }
  247. /* Completion, from vi's point of view. */
  248. int
  249. rl_vi_complete (ignore, key)
  250.      int ignore, key;
  251. {
  252.   if ((rl_point < rl_end) && (!whitespace (rl_line_buffer[rl_point])))
  253.     {
  254.       if (!whitespace (rl_line_buffer[rl_point + 1]))
  255. rl_vi_end_word (1, 'E');
  256.       rl_point++;
  257.     }
  258.   if (key == '*')
  259.     rl_complete_internal ('*'); /* Expansion and replacement. */
  260.   else if (key == '=')
  261.     rl_complete_internal ('?'); /* List possible completions. */
  262.   else if (key == '\')
  263.     rl_complete_internal (TAB); /* Standard Readline completion. */
  264.   else
  265.     rl_complete (0, key);
  266.   if (key == '*' || key == '\')
  267.     {
  268.       _rl_vi_set_last (key, 1, rl_arg_sign);
  269.       rl_vi_insertion_mode (1, key);
  270.     }
  271.   return (0);
  272. }
  273. /* Tilde expansion for vi mode. */
  274. int
  275. rl_vi_tilde_expand (ignore, key)
  276.      int ignore, key;
  277. {
  278.   rl_tilde_expand (0, key);
  279.   _rl_vi_set_last (key, 1, rl_arg_sign); /* XXX */
  280.   rl_vi_insertion_mode (1, key);
  281.   return (0);
  282. }
  283. /* Previous word in vi mode. */
  284. int
  285. rl_vi_prev_word (count, key)
  286.      int count, key;
  287. {
  288.   if (count < 0)
  289.     return (rl_vi_next_word (-count, key));
  290.   if (rl_point == 0)
  291.     {
  292.       ding ();
  293.       return (0);
  294.     }
  295.   if (_rl_uppercase_p (key))
  296.     rl_vi_bWord (count, key);
  297.   else
  298.     rl_vi_bword (count, key);
  299.   return (0);
  300. }
  301. /* Next word in vi mode. */
  302. int
  303. rl_vi_next_word (count, key)
  304.      int count, key;
  305. {
  306.   if (count < 0)
  307.     return (rl_vi_prev_word (-count, key));
  308.   if (rl_point >= (rl_end - 1))
  309.     {
  310.       ding ();
  311.       return (0);
  312.     }
  313.   if (_rl_uppercase_p (key))
  314.     rl_vi_fWord (count, key);
  315.   else
  316.     rl_vi_fword (count, key);
  317.   return (0);
  318. }
  319. /* Move to the end of the ?next? word. */
  320. int
  321. rl_vi_end_word (count, key)
  322.      int count, key;
  323. {
  324.   if (count < 0)
  325.     {
  326.       ding ();
  327.       return -1;
  328.     }
  329.   if (_rl_uppercase_p (key))
  330.     rl_vi_eWord (count, key);
  331.   else
  332.     rl_vi_eword (count, key);
  333.   return (0);
  334. }
  335. /* Move forward a word the way that 'W' does. */
  336. int
  337. rl_vi_fWord (count, ignore)
  338.      int count, ignore;
  339. {
  340.   while (count-- && rl_point < (rl_end - 1))
  341.     {
  342.       /* Skip until whitespace. */
  343.       while (!whitespace (rl_line_buffer[rl_point]) && rl_point < rl_end)
  344. rl_point++;
  345.       /* Now skip whitespace. */
  346.       while (whitespace (rl_line_buffer[rl_point]) && rl_point < rl_end)
  347. rl_point++;
  348.     }
  349.   return (0);
  350. }
  351. int
  352. rl_vi_bWord (count, ignore)
  353.      int count, ignore;
  354. {
  355.   while (count-- && rl_point > 0)
  356.     {
  357.       /* If we are at the start of a word, move back to whitespace so
  358.  we will go back to the start of the previous word. */
  359.       if (!whitespace (rl_line_buffer[rl_point]) &&
  360.   whitespace (rl_line_buffer[rl_point - 1]))
  361. rl_point--;
  362.       while (rl_point > 0 && whitespace (rl_line_buffer[rl_point]))
  363. rl_point--;
  364.       if (rl_point > 0)
  365. {
  366.   while (--rl_point >= 0 && !whitespace (rl_line_buffer[rl_point]));
  367.   rl_point++;
  368. }
  369.     }
  370.   return (0);
  371. }
  372. int
  373. rl_vi_eWord (count, ignore)
  374.      int count, ignore;
  375. {
  376.   while (count-- && rl_point < (rl_end - 1))
  377.     {
  378.       if (!whitespace (rl_line_buffer[rl_point]))
  379. rl_point++;
  380.       /* Move to the next non-whitespace character (to the start of the
  381.  next word). */
  382.       while (++rl_point < rl_end && whitespace (rl_line_buffer[rl_point]));
  383.       if (rl_point && rl_point < rl_end)
  384. {
  385.   /* Skip whitespace. */
  386.   while (rl_point < rl_end && whitespace (rl_line_buffer[rl_point]))
  387.     rl_point++;
  388.   /* Skip until whitespace. */
  389.   while (rl_point < rl_end && !whitespace (rl_line_buffer[rl_point]))
  390.     rl_point++;
  391.   /* Move back to the last character of the word. */
  392.   rl_point--;
  393. }
  394.     }
  395.   return (0);
  396. }
  397. int
  398. rl_vi_fword (count, ignore)
  399.      int count, ignore;
  400. {
  401.   while (count-- && rl_point < (rl_end - 1))
  402.     {
  403.       /* Move to white space (really non-identifer). */
  404.       if (isident (rl_line_buffer[rl_point]))
  405. {
  406.   while (isident (rl_line_buffer[rl_point]) && rl_point < rl_end)
  407.     rl_point++;
  408. }
  409.       else /* if (!whitespace (rl_line_buffer[rl_point])) */
  410. {
  411.   while (!isident (rl_line_buffer[rl_point]) &&
  412.  !whitespace (rl_line_buffer[rl_point]) && rl_point < rl_end)
  413.     rl_point++;
  414. }
  415.       /* Move past whitespace. */
  416.       while (whitespace (rl_line_buffer[rl_point]) && rl_point < rl_end)
  417. rl_point++;
  418.     }
  419.   return (0);
  420. }
  421. int
  422. rl_vi_bword (count, ignore)
  423.      int count, ignore;
  424. {
  425.   while (count-- && rl_point > 0)
  426.     {
  427.       int last_is_ident;
  428.       /* If we are at the start of a word, move back to whitespace
  429.  so we will go back to the start of the previous word. */
  430.       if (!whitespace (rl_line_buffer[rl_point]) &&
  431.   whitespace (rl_line_buffer[rl_point - 1]))
  432. rl_point--;
  433.       /* If this character and the previous character are `opposite', move
  434.  back so we don't get messed up by the rl_point++ down there in
  435.  the while loop.  Without this code, words like `l;' screw up the
  436.  function. */
  437.       last_is_ident = isident (rl_line_buffer[rl_point - 1]);
  438.       if ((isident (rl_line_buffer[rl_point]) && !last_is_ident) ||
  439.   (!isident (rl_line_buffer[rl_point]) && last_is_ident))
  440. rl_point--;
  441.       while (rl_point > 0 && whitespace (rl_line_buffer[rl_point]))
  442. rl_point--;
  443.       if (rl_point > 0)
  444. {
  445.   if (isident (rl_line_buffer[rl_point]))
  446.     while (--rl_point >= 0 && isident (rl_line_buffer[rl_point]));
  447.   else
  448.     while (--rl_point >= 0 && !isident (rl_line_buffer[rl_point]) &&
  449.    !whitespace (rl_line_buffer[rl_point]));
  450.   rl_point++;
  451. }
  452.     }
  453.   return (0);
  454. }
  455. int
  456. rl_vi_eword (count, ignore)
  457.      int count, ignore;
  458. {
  459.   while (count-- && rl_point < rl_end - 1)
  460.     {
  461.       if (!whitespace (rl_line_buffer[rl_point]))
  462. rl_point++;
  463.       while (rl_point < rl_end && whitespace (rl_line_buffer[rl_point]))
  464. rl_point++;
  465.       if (rl_point < rl_end)
  466. {
  467.   if (isident (rl_line_buffer[rl_point]))
  468.     while (++rl_point < rl_end && isident (rl_line_buffer[rl_point]));
  469.   else
  470.     while (++rl_point < rl_end && !isident (rl_line_buffer[rl_point])
  471.    && !whitespace (rl_line_buffer[rl_point]));
  472. }
  473.       rl_point--;
  474.     }
  475.   return (0);
  476. }
  477. int
  478. rl_vi_insert_beg (count, key)
  479.      int count, key;
  480. {
  481.   rl_beg_of_line (1, key);
  482.   rl_vi_insertion_mode (1, key);
  483.   return (0);
  484. }
  485. int
  486. rl_vi_append_mode (count, key)
  487.      int count, key;
  488. {
  489.   if (rl_point < rl_end)
  490.     rl_point++;
  491.   rl_vi_insertion_mode (1, key);
  492.   return (0);
  493. }
  494. int
  495. rl_vi_append_eol (count, key)
  496.      int count, key;
  497. {
  498.   rl_end_of_line (1, key);
  499.   rl_vi_append_mode (1, key);
  500.   return (0);
  501. }
  502. /* What to do in the case of C-d. */
  503. int
  504. rl_vi_eof_maybe (count, c)
  505.      int count, c;
  506. {
  507.   return (rl_newline (1, 'n'));
  508. }
  509. /* Insertion mode stuff. */
  510. /* Switching from one mode to the other really just involves
  511.    switching keymaps. */
  512. int
  513. rl_vi_insertion_mode (count, key)
  514.      int count, key;
  515. {
  516.   _rl_keymap = vi_insertion_keymap;
  517.   _rl_vi_last_key_before_insert = key;
  518.   return (0);
  519. }
  520. static void
  521. _rl_vi_save_insert (up)
  522.       UNDO_LIST *up;
  523. {
  524.   int len, start, end;
  525.   if (up == 0)
  526.     {
  527.       if (vi_insert_buffer_size >= 1)
  528. vi_insert_buffer[0] = '';
  529.       return;
  530.     }
  531.   start = up->start;
  532.   end = up->end;
  533.   len = end - start + 1;
  534.   if (len >= vi_insert_buffer_size)
  535.     {
  536.       vi_insert_buffer_size += (len + 32) - (len % 32);
  537.       vi_insert_buffer = xrealloc (vi_insert_buffer, vi_insert_buffer_size);
  538.     }
  539.   strncpy (vi_insert_buffer, rl_line_buffer + start, len - 1);
  540.   vi_insert_buffer[len-1] = '';
  541. }
  542.     
  543. void
  544. _rl_vi_done_inserting ()
  545. {
  546.   if (_rl_vi_doing_insert)
  547.     {
  548.       rl_end_undo_group ();
  549.       /* Now, the text between rl_undo_list->next->start and
  550.  rl_undo_list->next->end is what was inserted while in insert
  551.  mode.  It gets copied to VI_INSERT_BUFFER because it depends
  552.  on absolute indices into the line which may change (though they
  553.  probably will not). */
  554.       _rl_vi_doing_insert = 0;
  555.       _rl_vi_save_insert (rl_undo_list->next);
  556.       vi_continued_command = 1;
  557.     }
  558.   else
  559.     {
  560.       if (_rl_vi_last_key_before_insert == 'i' && rl_undo_list)
  561.         _rl_vi_save_insert (rl_undo_list);
  562.       /* XXX - Other keys probably need to be checked. */
  563.       else if (_rl_vi_last_key_before_insert == 'C')
  564. rl_end_undo_group ();
  565.       while (_rl_undo_group_level > 0)
  566. rl_end_undo_group ();
  567.       vi_continued_command = 0;
  568.     }
  569. }
  570. int
  571. rl_vi_movement_mode (count, key)
  572.      int count, key;
  573. {
  574.   if (rl_point > 0)
  575.     rl_backward (1, key);
  576.   _rl_keymap = vi_movement_keymap;
  577.   _rl_vi_done_inserting ();
  578.   return (0);
  579. }
  580. int
  581. rl_vi_arg_digit (count, c)
  582.      int count, c;
  583. {
  584.   if (c == '0' && rl_numeric_arg == 1 && !rl_explicit_arg)
  585.     return (rl_beg_of_line (1, c));
  586.   else
  587.     return (rl_digit_argument (count, c));
  588. }
  589. int
  590. rl_vi_change_case (count, ignore)
  591.      int count, ignore;
  592. {
  593.   char c = 0;
  594.   /* Don't try this on an empty line. */
  595.   if (rl_point >= rl_end)
  596.     return (0);
  597.   while (count-- && rl_point < rl_end)
  598.     {
  599.       if (_rl_uppercase_p (rl_line_buffer[rl_point]))
  600. c = _rl_to_lower (rl_line_buffer[rl_point]);
  601.       else if (_rl_lowercase_p (rl_line_buffer[rl_point]))
  602. c = _rl_to_upper (rl_line_buffer[rl_point]);
  603.       else
  604. {
  605.   /* Just skip over characters neither upper nor lower case. */
  606.   rl_forward (1, c);
  607.   continue;
  608. }
  609.       /* Vi is kind of strange here. */
  610.       if (c)
  611. {
  612.   rl_begin_undo_group ();
  613.   rl_delete (1, c);
  614.   rl_insert (1, c);
  615.   rl_end_undo_group ();
  616.   rl_vi_check ();
  617.         }
  618.       else
  619. rl_forward (1, c);
  620.     }
  621.   return (0);
  622. }
  623. int
  624. rl_vi_put (count, key)
  625.      int count, key;
  626. {
  627.   if (!_rl_uppercase_p (key) && (rl_point + 1 <= rl_end))
  628.     rl_point++;
  629.   rl_yank (1, key);
  630.   rl_backward (1, key);
  631.   return (0);
  632. }
  633. int
  634. rl_vi_check ()
  635. {
  636.   if (rl_point && rl_point == rl_end)
  637.     rl_point--;
  638.   return (0);
  639. }
  640. int
  641. rl_vi_column (count, key)
  642.      int count, key;
  643. {
  644.   if (count > rl_end)
  645.     rl_end_of_line (1, key);
  646.   else
  647.     rl_point = count - 1;
  648.   return (0);
  649. }
  650. int
  651. rl_vi_domove (key, nextkey)
  652.      int key, *nextkey;
  653. {
  654.   int c, save;
  655.   int old_end;
  656.   rl_mark = rl_point;
  657.   c = rl_read_key ();
  658.   *nextkey = c;
  659.   if (!member (c, vi_motion))
  660.     {
  661.       if (_rl_digit_p (c))
  662. {
  663.   save = rl_numeric_arg;
  664.   rl_numeric_arg = _rl_digit_value (c);
  665.   rl_digit_loop1 ();
  666.   rl_numeric_arg *= save;
  667.   c = rl_read_key (); /* real command */
  668.   *nextkey = c;
  669. }
  670.       else if (key == c && (key == 'd' || key == 'y' || key == 'c'))
  671. {
  672.   rl_mark = rl_end;
  673.   rl_beg_of_line (1, c);
  674.   _rl_vi_last_motion = c;
  675.   return (0);
  676. }
  677.       else
  678. return (-1);
  679.     }
  680.   _rl_vi_last_motion = c;
  681.   /* Append a blank character temporarily so that the motion routines
  682.      work right at the end of the line. */
  683.   old_end = rl_end;
  684.   rl_line_buffer[rl_end++] = ' ';
  685.   rl_line_buffer[rl_end] = '';
  686.   _rl_dispatch (c, _rl_keymap);
  687.   /* Remove the blank that we added. */
  688.   rl_end = old_end;
  689.   rl_line_buffer[rl_end] = '';
  690.   if (rl_point > rl_end)
  691.     rl_point = rl_end;
  692.   /* No change in position means the command failed. */
  693.   if (rl_mark == rl_point)
  694.     return (-1);
  695.   /* rl_vi_f[wW]ord () leaves the cursor on the first character of the next
  696.      word.  If we are not at the end of the line, and we are on a
  697.      non-whitespace character, move back one (presumably to whitespace). */
  698.   if ((_rl_to_upper (c) == 'W') && rl_point < rl_end && rl_point > rl_mark &&
  699.       !whitespace (rl_line_buffer[rl_point]))
  700.     rl_point--;
  701.   /* If cw or cW, back up to the end of a word, so the behaviour of ce
  702.      or cE is the actual result.  Brute-force, no subtlety. */
  703.   if (key == 'c' && rl_point >= rl_mark && (_rl_to_upper (c) == 'W'))
  704.     {
  705.       /* Don't move farther back than where we started. */
  706.       while (rl_point > rl_mark && whitespace (rl_line_buffer[rl_point]))
  707. rl_point--;
  708.       /* Posix.2 says that if cw or cW moves the cursor towards the end of
  709.  the line, the character under the cursor should be deleted. */
  710.       if (rl_point == rl_mark)
  711.         rl_point++;
  712.       else
  713. {
  714.   /* Move past the end of the word so that the kill doesn't
  715.      remove the last letter of the previous word.  Only do this
  716.      if we are not at the end of the line. */
  717.   if (rl_point >= 0 && rl_point < (rl_end - 1) && !whitespace (rl_line_buffer[rl_point]))
  718.     rl_point++;
  719. }
  720.     }
  721.   if (rl_mark < rl_point)
  722.     exchange (rl_point, rl_mark);
  723.   return (0);
  724. }
  725. /* A simplified loop for vi. Don't dispatch key at end.
  726.    Don't recognize minus sign? */
  727. static int
  728. rl_digit_loop1 ()
  729. {
  730.   int key, c;
  731.   while (1)
  732.     {
  733.       rl_message ("(arg: %d) ", rl_arg_sign * rl_numeric_arg, 0);
  734.       key = c = rl_read_key ();
  735.       if (_rl_keymap[c].type == ISFUNC &&
  736.   _rl_keymap[c].function == rl_universal_argument)
  737. {
  738.   rl_numeric_arg *= 4;
  739.   continue;
  740. }
  741.       c = UNMETA (c);
  742.       if (_rl_digit_p (c))
  743. {
  744.   if (rl_explicit_arg)
  745.     rl_numeric_arg = (rl_numeric_arg * 10) + _rl_digit_value (c);
  746.   else
  747.     rl_numeric_arg = _rl_digit_value (c);
  748.   rl_explicit_arg = 1;
  749. }
  750.       else
  751. {
  752.   rl_clear_message ();
  753.   rl_stuff_char (key);
  754.   break;
  755. }
  756.     }
  757.   return (0);
  758. }
  759. int
  760. rl_vi_delete_to (count, key)
  761.      int count, key;
  762. {
  763.   int c;
  764.   if (_rl_uppercase_p (key))
  765.     rl_stuff_char ('$');
  766.   else if (vi_redoing)
  767.     rl_stuff_char (_rl_vi_last_motion);
  768.   if (rl_vi_domove (key, &c))
  769.     {
  770.       ding ();
  771.       return -1;
  772.     }
  773.   /* These are the motion commands that do not require adjusting the
  774.      mark. */
  775.   if ((strchr (" l|h^0bB", c) == 0) && (rl_mark < rl_end))
  776.     rl_mark++;
  777.   rl_kill_text (rl_point, rl_mark);
  778.   return (0);
  779. }
  780. int
  781. rl_vi_change_to (count, key)
  782.      int count, key;
  783. {
  784.   int c, start_pos;
  785.   if (_rl_uppercase_p (key))
  786.     rl_stuff_char ('$');
  787.   else if (vi_redoing)
  788.     rl_stuff_char (_rl_vi_last_motion);
  789.   start_pos = rl_point;
  790.   if (rl_vi_domove (key, &c))
  791.     {
  792.       ding ();
  793.       return -1;
  794.     }
  795.   /* These are the motion commands that do not require adjusting the
  796.      mark.  c[wW] are handled by special-case code in rl_vi_domove(),
  797.      and already leave the mark at the correct location. */
  798.   if ((strchr (" l|hwW^0bB", c) == 0) && (rl_mark < rl_end))
  799.     rl_mark++;
  800.   /* The cursor never moves with c[wW]. */
  801.   if ((_rl_to_upper (c) == 'W') && rl_point < start_pos)
  802.     rl_point = start_pos;
  803.   if (vi_redoing)
  804.     {
  805.       if (vi_insert_buffer && *vi_insert_buffer)
  806. rl_begin_undo_group ();
  807.       rl_delete_text (rl_point, rl_mark);
  808.       if (vi_insert_buffer && *vi_insert_buffer)
  809. {
  810.   rl_insert_text (vi_insert_buffer);
  811.   rl_end_undo_group ();
  812. }
  813.     }
  814.   else
  815.     {
  816.       rl_begin_undo_group (); /* to make the `u' command work */
  817.       rl_kill_text (rl_point, rl_mark);
  818.       /* `C' does not save the text inserted for undoing or redoing. */
  819.       if (_rl_uppercase_p (key) == 0)
  820.         _rl_vi_doing_insert = 1;
  821.       _rl_vi_set_last (key, count, rl_arg_sign);
  822.       rl_vi_insertion_mode (1, key);
  823.     }
  824.   return (0);
  825. }
  826. int
  827. rl_vi_yank_to (count, key)
  828.      int count, key;
  829. {
  830.   int c, save = rl_point;
  831.   if (_rl_uppercase_p (key))
  832.     rl_stuff_char ('$');
  833.   if (rl_vi_domove (key, &c))
  834.     {
  835.       ding ();
  836.       return -1;
  837.     }
  838.   /* These are the motion commands that do not require adjusting the
  839.      mark. */
  840.   if ((strchr (" l|h^0%bB", c) == 0) && (rl_mark < rl_end))
  841.     rl_mark++;
  842.   rl_begin_undo_group ();
  843.   rl_kill_text (rl_point, rl_mark);
  844.   rl_end_undo_group ();
  845.   rl_do_undo ();
  846.   rl_point = save;
  847.   return (0);
  848. }
  849. int
  850. rl_vi_delete (count, key)
  851.      int count, key;
  852. {
  853.   int end;
  854.   if (rl_end == 0)
  855.     {
  856.       ding ();
  857.       return -1;
  858.     }
  859.   end = rl_point + count;
  860.   if (end >= rl_end)
  861.     end = rl_end;
  862.   rl_kill_text (rl_point, end);
  863.   
  864.   if (rl_point > 0 && rl_point == rl_end)
  865.     rl_backward (1, key);
  866.   return (0);
  867. }
  868. int
  869. rl_vi_back_to_indent (count, key)
  870.      int count, key;
  871. {
  872.   rl_beg_of_line (1, key);
  873.   while (rl_point < rl_end && whitespace (rl_line_buffer[rl_point]))
  874.     rl_point++;
  875.   return (0);
  876. }
  877. int
  878. rl_vi_first_print (count, key)
  879.      int count, key;
  880. {
  881.   return (rl_vi_back_to_indent (1, key));
  882. }
  883. int
  884. rl_vi_char_search (count, key)
  885.      int count, key;
  886. {
  887.   static char target;
  888.   static int orig_dir, dir;
  889.   if (key == ';' || key == ',')
  890.     dir = key == ';' ? orig_dir : -orig_dir;
  891.   else
  892.     {
  893.       if (vi_redoing)
  894. target = _rl_vi_last_search_char;
  895.       else
  896. _rl_vi_last_search_char = target = rl_getc (rl_instream);
  897.       switch (key)
  898.         {
  899.         case 't':
  900.           orig_dir = dir = FTO;
  901.           break;
  902.         case 'T':
  903.           orig_dir = dir = BTO;
  904.           break;
  905.         case 'f':
  906.           orig_dir = dir = FFIND;
  907.           break;
  908.         case 'F':
  909.           orig_dir = dir = BFIND;
  910.           break;
  911.         }
  912.     }
  913.   return (_rl_char_search_internal (count, dir, target));
  914. }
  915. /* Match brackets */
  916. int
  917. rl_vi_match (ignore, key)
  918.      int ignore, key;
  919. {
  920.   int count = 1, brack, pos;
  921.   pos = rl_point;
  922.   if ((brack = rl_vi_bracktype (rl_line_buffer[rl_point])) == 0)
  923.     {
  924.       while ((brack = rl_vi_bracktype (rl_line_buffer[rl_point])) == 0 &&
  925.      rl_point < rl_end - 1)
  926. rl_forward (1, key);
  927.       if (brack <= 0)
  928. {
  929.   rl_point = pos;
  930.   ding ();
  931.   return -1;
  932. }
  933.     }
  934.   pos = rl_point;
  935.   if (brack < 0)
  936.     {
  937.       while (count)
  938. {
  939.   if (--pos >= 0)
  940.     {
  941.       int b = rl_vi_bracktype (rl_line_buffer[pos]);
  942.       if (b == -brack)
  943. count--;
  944.       else if (b == brack)
  945. count++;
  946.     }
  947.   else
  948.     {
  949.       ding ();
  950.       return -1;
  951.     }
  952. }
  953.     }
  954.   else
  955.     { /* brack > 0 */
  956.       while (count)
  957. {
  958.   if (++pos < rl_end)
  959.     {
  960.       int b = rl_vi_bracktype (rl_line_buffer[pos]);
  961.       if (b == -brack)
  962. count--;
  963.       else if (b == brack)
  964. count++;
  965.     }
  966.   else
  967.     {
  968.       ding ();
  969.       return -1;
  970.     }
  971. }
  972.     }
  973.   rl_point = pos;
  974.   return (0);
  975. }
  976. int
  977. rl_vi_bracktype (c)
  978.      int c;
  979. {
  980.   switch (c)
  981.     {
  982.     case '(': return  1;
  983.     case ')': return -1;
  984.     case '[': return  2;
  985.     case ']': return -2;
  986.     case '{': return  3;
  987.     case '}': return -3;
  988.     default:  return  0;
  989.     }
  990. }
  991. int
  992. rl_vi_change_char (count, key)
  993.      int count, key;
  994. {
  995.   int c;
  996.   if (vi_redoing)
  997.     c = _rl_vi_last_replacement;
  998.   else
  999.     _rl_vi_last_replacement = c = rl_getc (rl_instream);
  1000.   if (c == '33' || c == CTRL ('C'))
  1001.     return -1;
  1002.   while (count-- && rl_point < rl_end)
  1003.     {
  1004.       rl_begin_undo_group ();
  1005.       rl_delete (1, c);
  1006.       rl_insert (1, c);
  1007.       if (count == 0)
  1008. rl_backward (1, c);
  1009.       rl_end_undo_group ();
  1010.     }
  1011.   return (0);
  1012. }
  1013. int
  1014. rl_vi_subst (count, key)
  1015.      int count, key;
  1016. {
  1017.   rl_begin_undo_group ();
  1018.   if (_rl_uppercase_p (key))
  1019.     {
  1020.       rl_beg_of_line (1, key);
  1021.       rl_kill_line (1, key);
  1022.     }
  1023.   else
  1024.     rl_delete_text (rl_point, rl_point+count);
  1025.   rl_end_undo_group ();
  1026.   _rl_vi_set_last (key, count, rl_arg_sign);
  1027.   if (vi_redoing)
  1028.     {
  1029.       int o = _rl_doing_an_undo;
  1030.       _rl_doing_an_undo = 1;
  1031.       if (vi_insert_buffer && *vi_insert_buffer)
  1032. rl_insert_text (vi_insert_buffer);
  1033.       _rl_doing_an_undo = o;
  1034.     }
  1035.   else
  1036.     {
  1037.       rl_begin_undo_group ();
  1038.       _rl_vi_doing_insert = 1;
  1039.       rl_vi_insertion_mode (1, key);
  1040.     }
  1041.   return (0);
  1042. }
  1043. int
  1044. rl_vi_overstrike (count, key)
  1045.      int count, key;
  1046. {
  1047.   int i;
  1048.   if (_rl_vi_doing_insert == 0)
  1049.     {
  1050.       _rl_vi_doing_insert = 1;
  1051.       rl_begin_undo_group ();
  1052.     }
  1053.   for (i = 0; i < count; i++)
  1054.     {
  1055.       vi_replace_count++;
  1056.       rl_begin_undo_group ();
  1057.       if (rl_point < rl_end)
  1058. {
  1059.   rl_delete (1, key);
  1060.   rl_insert (1, key);
  1061. }
  1062.       else
  1063. rl_insert (1, key);
  1064.       rl_end_undo_group ();
  1065.     }
  1066.   return (0);
  1067. }
  1068. int
  1069. rl_vi_overstrike_delete (count, key)
  1070.      int count, key;
  1071. {
  1072.   int i, s;
  1073.   for (i = 0; i < count; i++)
  1074.     {
  1075.       if (vi_replace_count == 0)
  1076. {
  1077.   ding ();
  1078.   break;
  1079. }
  1080.       s = rl_point;
  1081.       if (rl_do_undo ())
  1082. vi_replace_count--;
  1083.       if (rl_point == s)
  1084. rl_backward (1, key);
  1085.     }
  1086.   if (vi_replace_count == 0 && _rl_vi_doing_insert)
  1087.     {
  1088.       rl_end_undo_group ();
  1089.       rl_do_undo ();
  1090.       _rl_vi_doing_insert = 0;
  1091.     }
  1092.   return (0);
  1093. }
  1094. int
  1095. rl_vi_replace (count, key)
  1096.      int count, key;
  1097. {
  1098.   int i;
  1099.   vi_replace_count = 0;
  1100.   if (!vi_replace_map)
  1101.     {
  1102.       vi_replace_map = rl_make_bare_keymap ();
  1103.       for (i = ' '; i < KEYMAP_SIZE; i++)
  1104. vi_replace_map[i].function = rl_vi_overstrike;
  1105.       vi_replace_map[RUBOUT].function = rl_vi_overstrike_delete;
  1106.       vi_replace_map[ESC].function = rl_vi_movement_mode;
  1107.       vi_replace_map[RETURN].function = rl_newline;
  1108.       vi_replace_map[NEWLINE].function = rl_newline;
  1109.       /* If the normal vi insertion keymap has ^H bound to erase, do the
  1110.          same here.  Probably should remove the assignment to RUBOUT up
  1111.          there, but I don't think it will make a difference in real life. */
  1112.       if (vi_insertion_keymap[CTRL ('H')].type == ISFUNC &&
  1113.   vi_insertion_keymap[CTRL ('H')].function == rl_rubout)
  1114. vi_replace_map[CTRL ('H')].function = rl_vi_overstrike_delete;
  1115.     }
  1116.   _rl_keymap = vi_replace_map;
  1117.   return (0);
  1118. }
  1119. #if 0
  1120. /* Try to complete the word we are standing on or the word that ends with
  1121.    the previous character.  A space matches everything.  Word delimiters are
  1122.    space and ;. */
  1123. int
  1124. rl_vi_possible_completions()
  1125. {
  1126.   int save_pos = rl_point;
  1127.   if (rl_line_buffer[rl_point] != ' ' && rl_line_buffer[rl_point] != ';')
  1128.     {
  1129.       while (rl_point < rl_end && rl_line_buffer[rl_point] != ' ' &&
  1130.      rl_line_buffer[rl_point] != ';')
  1131. rl_point++;
  1132.     }
  1133.   else if (rl_line_buffer[rl_point - 1] == ';')
  1134.     {
  1135.       ding ();
  1136.       return (0);
  1137.     }
  1138.   rl_possible_completions ();
  1139.   rl_point = save_pos;
  1140.   return (0);
  1141. }
  1142. #endif
  1143. /* Functions to save and restore marks. */
  1144. int
  1145. rl_vi_set_mark (count, key)
  1146.      int count, key;
  1147. {
  1148.   int ch;
  1149.   ch = rl_read_key ();
  1150.   if (_rl_lowercase_p (ch) == 0)
  1151.     {
  1152.       ding ();
  1153.       return -1;
  1154.     }
  1155.   ch -= 'a';
  1156.   vi_mark_chars[ch] = rl_point;
  1157.   return 0;
  1158. }
  1159. int
  1160. rl_vi_goto_mark (count, key)
  1161.      int count, key;
  1162. {
  1163.   int ch;
  1164.   ch = rl_read_key ();
  1165.   if (ch == '`')
  1166.     {
  1167.       rl_point = rl_mark;
  1168.       return 0;
  1169.     }
  1170.   else if (_rl_lowercase_p (ch) == 0)
  1171.     {
  1172.       ding ();
  1173.       return -1;
  1174.     }
  1175.   ch -= 'a';
  1176.   if (vi_mark_chars[ch] == -1)
  1177.     {
  1178.       ding ();
  1179.       return -1;
  1180.     }
  1181.   rl_point = vi_mark_chars[ch];
  1182.   return 0;
  1183. }
  1184. #endif /* VI_MODE */