mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-01-05 00:14:11 +01:00
Camel-case some identifiers gone rogue.
Do not free a camel of the burden of his hump; you may be freeing him from being a camel. - G. K. Chesterton
This commit is contained in:
@@ -31,7 +31,7 @@
|
||||
*/
|
||||
const Map = Class("Map", {
|
||||
init: function (modes, keys, description, action, extraInfo) {
|
||||
modes = Array.concat(modes).map(function (m) isobject(m) ? m.mask : m);
|
||||
modes = Array.concat(modes).map(function (m) isObject(m) ? m.mask : m);
|
||||
|
||||
this.id = ++Map.id;
|
||||
this.modes = modes;
|
||||
@@ -392,7 +392,7 @@ const Mappings = Module("mappings", {
|
||||
else {
|
||||
if (args["-javascript"]) {
|
||||
rhs = ["-javascript", rhs];
|
||||
var action = dactyl.userfunc("count", rhs);
|
||||
var action = dactyl.userFunc("count", rhs);
|
||||
}
|
||||
else if (args["-ex"]) {
|
||||
rhs = ["-ex", rhs];
|
||||
|
||||
Reference in New Issue
Block a user