1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-04 18:14:12 +01:00

Add c_<compl-{next,prev}-group> help entries.

This commit is contained in:
Kris Maglione
2011-10-05 20:09:22 -04:00
parent b43d9f914c
commit 09a3bfcaac
4 changed files with 29 additions and 5 deletions

View File

@@ -643,7 +643,7 @@ var CompletionContext = Class("CompletionContext", {
getRow: function getRow(idx, doc) {
let cache = this.cache.rows;
if (cache) {
if (!(idx in this.cache.rows))
if (idx in this.items && !(idx in this.cache.rows))
try {
cache[idx] = util.xmlToDom(this.createRow(this.items[idx]),
doc || this.doc);