mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-02-15 23:25:47 +01:00
Normalise naming of module initializer functions.
This commit is contained in:
@@ -1114,7 +1114,7 @@ var Completion = Module("completion", {
|
||||
get options() this.modules.options
|
||||
});
|
||||
},
|
||||
commands: function (dactyl, modules, window) {
|
||||
commands: function initCommands(dactyl, modules, window) {
|
||||
const { commands, completion } = modules;
|
||||
commands.add(["contexts"],
|
||||
"List the completion contexts used during completion of an Ex command",
|
||||
@@ -1135,7 +1135,7 @@ var Completion = Module("completion", {
|
||||
literal: 0
|
||||
});
|
||||
},
|
||||
options: function (dactyl, modules, window) {
|
||||
options: function initOptions(dactyl, modules, window) {
|
||||
const { completion, options } = modules;
|
||||
let wildmode = {
|
||||
values: {
|
||||
|
||||
Reference in New Issue
Block a user