vi_paste_prev(): * Vi paste previous deletion to the left of the cursor * [P] */
| 134 | * [P] |
| 135 | */ |
| 136 | protected el_action_t |
| 137 | /*ARGSUSED*/ |
| 138 | vi_paste_prev(EditLine *el, Int c __attribute__((__unused__))) |
| 139 | { |
| 140 | |
| 141 | return cv_paste(el, 1); |
| 142 | } |
| 143 | |
| 144 | |
| 145 | /* vi_prev_big_word(): |
nothing calls this directly
no test coverage detected