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

Rename the [ci]abbrev commands to [ci]abbreviate.

This commit is contained in:
Doug Kearns
2011-02-01 17:23:24 +11:00
parent df4b9340eb
commit 6fd731299e
2 changed files with 14 additions and 14 deletions

View File

@@ -230,7 +230,7 @@ var Abbreviations = Module("abbreviations", {
modes.sort();
modeDescription = modeDescription ? " in " + modeDescription + " mode" : "";
commands.add([ch ? ch + "a[bbrev]" : "ab[breviate]"],
commands.add([ch + "ab[breviate]"],
"Abbreviate a key sequence" + modeDescription,
function (args) {
let [lhs, rhs] = args;
@@ -271,7 +271,7 @@ var Abbreviations = Module("abbreviations", {
]
});
commands.add([ch ? ch + "una[bbrev]" : "una[bbreviate]"],
commands.add([ch + "una[bbreviate]"],
"Remove an abbreviation" + modeDescription,
function (args) {
let lhs = args.literalArg;