我一直在寻找使我的代码更简洁的方法,因此我想找到一种方法来自动将标识符替换为该标识符的缩写(每当我键入该标识符时)。它类似于某些文字处理器中的“自动更正”功能。
例子:
var con = console.log;
//from this point on, whenever I type "console.log" as a variable name, I want the text to be automatically replaced with "con"
我一直在寻找使我的代码更简洁的方法,因此我想找到一种方法来自动将标识符替换为该标识符的缩写(每当我键入该标识符时)。它类似于某些文字处理器中的“自动更正”功能。
例子:
var con = console.log;
//from this point on, whenever I type "console.log" as a variable name, I want the text to be automatically replaced with "con"
采用
var con = function(str){console.log(str);};
con('hello world'); //=> hello world
看起来您希望能够使用一种智能感知或自动完成功能。你的编辑应该提供。您可以尝试Komodo Edit或Visual Studio (2012)。在 Komodo Edit 中,上面的代码示例会导致自动完成(它会显示con
您是否输入了“co”)。
长时间编写代码,并通过混淆器运行它,例如前面描述的包之一