1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-19 16:35:49 +01:00

Rename :tabreattach to :tabattach.

As Kris noted this may be better implemented as :tabmove -window.
This commit is contained in:
Doug Kearns
2009-09-30 19:48:34 +10:00
parent 422579f6e2
commit f79c6e8dc1
7 changed files with 24 additions and 16 deletions

View File

@@ -900,7 +900,8 @@ const liberator = (function () //{{{
completion.window = function window(context) {
context.title = ["Window", "Title"]
context.completions = [[i, win.document.title] for ([i, win] in Iterator(liberator.windows))];
context.keys = { text: function (win) liberator.windows.indexOf(win) + 1, description: function (win) win.document.title };
context.completions = liberator.windows;
};
});