vi_repeat_next_char(): * Vi repeat current character search in the same search direction * [;] */
| 768 | * [;] |
| 769 | */ |
| 770 | protected el_action_t |
| 771 | /*ARGSUSED*/ |
| 772 | vi_repeat_next_char(EditLine *el, Int c __attribute__((__unused__))) |
| 773 | { |
| 774 | |
| 775 | return cv_csearch(el, el->el_search.chadir, el->el_search.chacha, |
| 776 | el->el_state.argument, el->el_search.chatflg); |
| 777 | } |
| 778 | |
| 779 | |
| 780 | /* vi_repeat_prev_char(): |
nothing calls this directly
no test coverage detected