mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-23 09:48:00 +01:00
More completion stuff. Add proper :bmarks completion
This commit is contained in:
@@ -1344,7 +1344,7 @@ function ItemList(id) //{{{
|
||||
function fill(offset)
|
||||
{
|
||||
let diff = offset - startIndex;
|
||||
if (items == null || offset == null || offset - startIndex == 0 || offset < 0)
|
||||
if (items == null || offset == null || diff == 0 || offset < 0)
|
||||
return;
|
||||
|
||||
startIndex = offset;
|
||||
|
||||
Reference in New Issue
Block a user