1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-10 08:05:46 +01:00

Reset progress indicator on location change.

This commit is contained in:
Kris Maglione
2011-02-04 20:24:50 -05:00
parent 6a3d5dcfce
commit e9fd99dafa
9 changed files with 57 additions and 44 deletions

View File

@@ -1015,7 +1015,7 @@ var Completion = Module("completion", {
options: function (dactyl, modules, window) {
const { completion, options } = modules;
let wildmode = {
completer: function (context) [
values: [
// Why do we need ""?
// Because its description is useful during completion. --Kris
["", "Complete only the first match"],
@@ -1047,7 +1047,7 @@ var Completion = Module("completion", {
options.add(["complete", "cpt"],
"Items which are completed at the :open prompts",
"charlist", config.defaults.complete == null ? "slf" : config.defaults.complete,
{ completer: function (context) values(completion.urlCompleters) });
{ get values() values(completion.urlCompleters) });
options.add(["wildanchor", "wia"],
"Define which completion groups only match at the beginning of their text",
@@ -1057,7 +1057,7 @@ var Completion = Module("completion", {
"Completion case matching mode",
"regexpmap", ".?:smart",
{
completer: function () [
values: [
["smart", "Case is significant when capital letters are typed"],
["match", "Case is always significant"],
["ignore", "Case is never significant"]