vi_change_meta(): * Vi change prefix command * [c] */
| 276 | * [c] |
| 277 | */ |
| 278 | protected el_action_t |
| 279 | /*ARGSUSED*/ |
| 280 | vi_change_meta(EditLine *el, Int c __attribute__((__unused__))) |
| 281 | { |
| 282 | |
| 283 | /* |
| 284 | * Delete with insert == change: first we delete and then we leave in |
| 285 | * insert mode. |
| 286 | */ |
| 287 | return cv_action(el, DELETE | INSERT); |
| 288 | } |
| 289 | |
| 290 | |
| 291 | /* vi_insert_at_bol(): |
nothing calls this directly
no test coverage detected