home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / gdb-4.16-base.tgz / gdb-4.16-base.tar / fsf / gdb / readline / vi_mode.c < prev    next >
C/C++ Source or Header  |  1994-02-24  |  25KB  |  1,225 lines

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