distinguish ctrl-backspace

This commit is contained in:
Boris Faure 2014-09-28 23:06:56 +02:00
parent dcb978662a
commit 951ed16894
1 changed files with 1 additions and 1 deletions

View File

@ -131,7 +131,7 @@ _handle_key_to_pty(Termpty *ty, const Evas_Event_Key_Down *ev,
{
Config *cfg = termpty_config_get(ty);
if (cfg->erase_is_del)
if (cfg->erase_is_del && !ctrl)
{
termpty_write(ty, "\177", sizeof("\177") - 1);
}