1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-20 00:27:58 +01:00

Added g; continued extended hint mode. ;F is now g;b.

This commit is contained in:
Kris Maglione
2010-10-04 14:33:54 -04:00
parent 9487758a91
commit f407dfd734
4 changed files with 69 additions and 35 deletions

View File

@@ -685,7 +685,7 @@ const CommandLine = Module("commandline", {
extra = extra || {};
this._input = {
submit: callback,
submit: callback || extra.onAccept,
change: extra.onChange,
complete: extra.completer,
cancel: extra.onCancel
@@ -924,7 +924,7 @@ const CommandLine = Module("commandline", {
if (this._startHints) {
statusline.updateInputBuffer("");
this._startHints = false;
hints.show(key, undefined, win);
hints.show(key, { window: win });
return;
}