editor: Add Shift+Insert Handling

This commit is contained in:
Alastair Poole 2019-12-15 16:12:41 +00:00
parent 5682b021ca
commit 905d232d31
1 changed files with 6 additions and 0 deletions

View File

@ -814,6 +814,12 @@ _smart_cb_key_down(void *data EINA_UNUSED, Evas *e EINA_UNUSED,
}
}
if (shift && !strcmp(ev->key, "Insert"))
{
elm_code_widget_selection_paste(editor->entry);
return;
}
if (alt || ctrl)
return;