mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-04-02 18:23:32 +02:00
Fix :map <filter>
This commit is contained in:
@@ -384,7 +384,7 @@ function Mappings() //{{{
|
|||||||
|
|
||||||
let maps = mappingsIterator(modes, user);
|
let maps = mappingsIterator(modes, user);
|
||||||
if (filter)
|
if (filter)
|
||||||
maps = (map for (map in maps) if (map.names[0] == filter));
|
maps = [map for (map in maps) if (map.names[0] == filter)];
|
||||||
|
|
||||||
let list = <table>
|
let list = <table>
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user