vi_prev_char(): * Vi move to the character specified previous * [F] */
| 732 | * [F] |
| 733 | */ |
| 734 | protected el_action_t |
| 735 | /*ARGSUSED*/ |
| 736 | vi_prev_char(EditLine *el, Int c __attribute__((__unused__))) |
| 737 | { |
| 738 | return cv_csearch(el, CHAR_BACK, -1, el->el_state.argument, 0); |
| 739 | } |
| 740 | |
| 741 | |
| 742 | /* vi_to_next_char(): |
nothing calls this directly
no test coverage detected