Move back to insert mode after paste

This commit is contained in:
daa 2017-03-14 22:51:26 +03:00
parent 147483288b
commit 10afc750e8
1 changed files with 1 additions and 1 deletions

View File

@ -226,7 +226,7 @@ fn edit_paste() {
let paste_command = if ui.mode == NvimMode::Normal {
"\"*p"
} else {
"<Esc>\"*p"
"<Esc>\"*pa"
};
let mut nvim = ui.nvim();