diff --git a/common/content/abbreviations.js b/common/content/abbreviations.js index 086113af..6e505598 100644 --- a/common/content/abbreviations.js +++ b/common/content/abbreviations.js @@ -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; diff --git a/common/locale/en-US/map.xml b/common/locale/en-US/map.xml index a6d1dd87..9d3b319f 100644 --- a/common/locale/en-US/map.xml +++ b/common/locale/en-US/map.xml @@ -455,10 +455,10 @@ - :ca :cabbrev - :cabbrev lhs rhs - :cabbrev lhs - :cabbrev + :ca :cabbreviate + :cabbreviate lhs rhs + :cabbreviate lhs + :cabbreviate

Abbreviate a key sequence for Command-line mode. Same as @@ -469,10 +469,10 @@ - :ia :iabbrev - :iabbrev lhs rhs - :iabbrev lhs - :iabbrev + :ia :iabbreviate + :iabbreviate lhs rhs + :iabbreviate lhs + :iabbreviate

Abbreviate a key sequence for Insert mode. Same as @@ -490,8 +490,8 @@ - :cuna :cunabbrev - :cunabbrev lhs + :cuna :cunabbreviate + :cunabbreviate lhs

Remove an abbreviation for Command-line mode. Same as @@ -502,8 +502,8 @@ - :iuna :iunabbrev - :iunabbrev lhs + :iuna :iunabbreviate + :iunabbreviate lhs

Remove an abbreviation for Insert mode. Same as