自动将一个变量名称替换为另一个

时间:2012-12-18 06:20:03

标签: javascript

我一直在寻找使代码更简洁的方法,所以我想找到一种方法来自动用标识符的缩写替换标识符(每当我键入该标识符时)。它类似于某些字处理器中的“自动更正”功能。

示例:

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"

2 个答案:

答案 0 :(得分:2)

使用

var con = function(str){console.log(str);};
con('hello world'); //=> hello world

您希望能够使用某种intellisenseautocomplete。你的编辑应该提供。您可以尝试Komodo EditVisual Studio(2012)。在Komodo编辑中,上面的代码示例导致自动完成(如果您输入'co',则显示con。)

答案 1 :(得分:0)

长时间编写代码,并通过混淆器运行,例如one of the packages previously described