Insert before cursor

This commit is contained in:
daa 2017-10-14 14:42:50 +03:00
parent 22e24318c9
commit e7cd39607f
1 changed files with 1 additions and 1 deletions

View File

@ -333,7 +333,7 @@ impl State {
let nvim = self.nvim();
if let Some(mut nvim) = nvim {
if self.mode.is(&mode::NvimMode::Insert) || self.mode.is(&mode::NvimMode::Normal) {
let paste_code = format!("normal! \"{}p", clipboard);
let paste_code = format!("normal! \"{}P", clipboard);
nvim.command(&paste_code).report_err(&mut *nvim);
} else {
let paste_code = format!("<C-r>{}", clipboard);