summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/modules/everything-apps/e_mod_main.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/modules/everything-apps/e_mod_main.c b/src/modules/everything-apps/e_mod_main.c
index 008550292a..a76d53dd7c 100644
--- a/src/modules/everything-apps/e_mod_main.c
+++ b/src/modules/everything-apps/e_mod_main.c
@@ -255,7 +255,8 @@ _fetch_exe(Evry_Plugin *plugin, const char *input)
if (!strncmp(input, tmp, end))
{
- if (query && (cnt++ < 50) && (len != tmp_len))
+ if (query && (cnt++ < 50) &&
+ (len != tmp_len))
_item_exe_add(p, tmp, 15);
if (!min || tmp_len < min)
@@ -278,7 +279,7 @@ _fetch_exe(Evry_Plugin *plugin, const char *input)
EVRY_ITEM_LABEL_SET(it, file);
IF_RELEASE(p->command->file);
p->command->file = eina_stringshare_ref(it->label);
- it->fuzzy_match = 10;
+ it->fuzzy_match = 11; // prefix match
EVRY_PLUGIN_ITEM_APPEND(p, it);
evry->item_changed(it, 0, 0);
}