auto_comp: Support "Tab" key to auto complete.

Summary: Support "Tab" key to auto complete.

Reviewers: Hermet

Reviewed By: Hermet

Differential Revision: https://phab.enlightenment.org/D1614
This commit is contained in:
Jaehyun Cho 2014-10-31 15:09:59 +09:00 committed by ChunEon Park
parent 7f6206269e
commit 4244351e0b
1 changed files with 1 additions and 1 deletions

View File

@ -528,7 +528,7 @@ autocomp_event_dispatch(const char *key)
entry_anchor_off(ad);
return EINA_TRUE;
}
if (!strcmp(key, "Return"))
if (!strcmp(key, "Return") || !strcmp(key, "Tab"))
{
insert_completed_text(ad);
queue_reset(ad);