在Sublime Text 2中查找并替换排除注释?

时间:2014-06-04 15:12:35

标签: sublimetext2

我已经在我的代码中重命名了一个变量,所以我也要经历并替换所有使用该变量的实例。这将是一个简单的查找和替换,但原始变量是一个单词,也恰好出现在我的一些评论中。就是这样:

//Old: var input = getUserInput();
var userinput = getUserInput();

input = parseInt(input, 1);
doSomething(input); //Does something with the user's input
doSomethingElse(input); //Does something else with the user's input

我想在评论之外替换input的实例,以便我明白这一点:

//Old: var input = getUserInput();
var userinput = getUserInput();

userinput = parseInt(userinput, 1);
doSomething(userinput); //Does something with the user's input
doSomethingElse(userinput); //Does something else with the user's input

这可能吗?

0 个答案:

没有答案