mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-03-07 00:35:45 +01:00
Fix :h <partial-tag>
This commit is contained in:
@@ -950,7 +950,7 @@ const liberator = (function () //{{{
|
|||||||
{
|
{
|
||||||
if (item[0] == topic)
|
if (item[0] == topic)
|
||||||
return format(item);
|
return format(item);
|
||||||
else if (partialMatch == -1 && item[0].indexOf(topic) > -1)
|
else if (!partialMatch && item[0].indexOf(topic) > -1)
|
||||||
{
|
{
|
||||||
partialMatch = item;
|
partialMatch = item;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user