mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-01-05 09:54:13 +01:00
Add commands.get completer. Add more JS completer tests.
--HG-- branch : groups
This commit is contained in:
@@ -1545,7 +1545,9 @@ var Commands = Module("commands", {
|
||||
const { JavaScript, commands } = modules;
|
||||
|
||||
JavaScript.setCompleter([commands.user.get, commands.user.remove],
|
||||
[function () [[c.name, c.description] for (c in this)]]);
|
||||
[function () [[c.names, c.description] for (c in this)]]);
|
||||
JavaScript.setCompleter([commands.get],
|
||||
[function () [[c.names, c.description] for (c in this.iterator())]]);
|
||||
},
|
||||
mappings: function (dactyl, modules, window) {
|
||||
const { commands, mappings, modes } = modules;
|
||||
|
||||
Reference in New Issue
Block a user