From 0788c450bb755c9e3705c33aef18ca5defd2da0e Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Fri, 16 Nov 2007 11:38:34 +0000 Subject: [PATCH] fix short version names for :abclear, :iabclear and :cabclear --- content/commands.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/content/commands.js b/content/commands.js index 727f8b7c..2aaaea28 100644 --- a/content/commands.js +++ b/content/commands.js @@ -1191,15 +1191,15 @@ vimperator.Commands = function () //{{{ help: "Same as :una[bbreviate], but for Insert mode only." } )); - addDefaultCommand(new vimperator.Command(["ab[clear]"], + addDefaultCommand(new vimperator.Command(["abc[lear]"], function (args) { vimperator.editor.removeAllAbbreviations("!"); }, { short_help: "Remove all abbreviations" } )); - addDefaultCommand(new vimperator.Command(["cab[clear]"], + addDefaultCommand(new vimperator.Command(["cabc[lear]"], function (args) { vimperator.editor.removeAllAbbreviations("c"); }, { short_help: "Remove all abbreviations for Command-line mode" } )); - addDefaultCommand(new vimperator.Command(["iab[clear]"], + addDefaultCommand(new vimperator.Command(["iabc[lear]"], function (args) { vimperator.editor.removeAllAbbreviations("i"); }, { short_help: "Remove all abbreviations for Insert mode" } ));