是否可以为NetBeans编写替换宏?
我需要用function isActive
代替function is_active
。似乎短正则表达式是不可能的。
所以我想知道有可能写这样的宏吗?
疯狂的宏代码....
我们不能正确使用find,所以我决定使用find-selection
caret-begin
"function[^(]*_[a-z]"
selection-begin-line
find-selection
remove-selection
find
# there is no loop, so you need to repeat this lines many-many times (too many may hang your IDE)
caret-begin
find-next
caret-forward
caret-backward
delete-previous
to-upper-case
要使用此宏,您需要将焦点设置在文档上并打开正则表达式查找选项。
警告,可能破坏你的代码