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

Add standard 'mark' completer. Fix x/y transposition in :delm completion

This commit is contained in:
Kris Maglione
2009-01-07 17:38:57 -05:00
parent 1f2bf969d1
commit 0aeee25e65
3 changed files with 17 additions and 13 deletions

View File

@@ -967,7 +967,7 @@ function QuickMarks() //{{{
completer: function (context)
{
context.title = ["QuickMark", "URL"];
context.completions = [[key, val] for ([key, val] in qmarks)];
context.completions = qmarks;
}
});