vi_paste_next(): * Vi paste previous deletion to the right of the cursor * [p] */
| 121 | * [p] |
| 122 | */ |
| 123 | protected el_action_t |
| 124 | /*ARGSUSED*/ |
| 125 | vi_paste_next(EditLine *el, Int c __attribute__((__unused__))) |
| 126 | { |
| 127 | |
| 128 | return cv_paste(el, 0); |
| 129 | } |
| 130 | |
| 131 | |
| 132 | /* vi_paste_prev(): |
nothing calls this directly
no test coverage detected