Improve paste action

This commit is contained in:
daa 2017-03-07 19:24:45 +03:00
parent 8e6888591c
commit 5316b37919
1 changed files with 1 additions and 1 deletions

View File

@ -192,7 +192,7 @@ fn edit_paste() {
UI.with(|ui_cell| {
let mut ui = ui_cell.borrow_mut();
if let Err(e) = ui.nvim().input("\"*p") {
if let Err(e) = ui.nvim().input("<Esc>\"*p") {
println!("Error paste from clipboard {}", e);
}
});